location.gh.inc 639 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Ghana
  3. function location_province_list_gh() {
  4. return array('AS' => "Ashanti Region",
  5. 'BA' => "Brong-Ahafo Region",
  6. 'CE' => "Central Region",
  7. 'EA' => "Eastern Region",
  8. 'GA' => "Greater Accra Region",
  9. 'NO' => "Northern Region",
  10. 'UE' => "Upper East Region",
  11. 'UW' => "Upper West Region",
  12. 'VO' => "Volta Region",
  13. 'WE' => "Western Region");
  14. }
  15. /**
  16. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  17. */
  18. function location_bounds_gh() {
  19. return array(
  20. 'minlng' => -3.3352,
  21. 'minlat' => 4.678367,
  22. 'maxlng' => 1.25875,
  23. 'maxlat' => 11.169167,
  24. );
  25. }