location.gy.inc 679 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Guyana
  3. function location_province_list_gy() {
  4. return array('BW' => "Barima-Waini",
  5. 'CM' => "Cuyuni-Mazaruni",
  6. 'DM' => "Demerara-Mahaica",
  7. 'EC' => "East Berbice-Corentyne",
  8. 'EW' => "Essequibo Islands-West Demerara",
  9. 'MB' => "Mahaica-Berbice",
  10. 'PM' => "Pomeroon-Supenaam",
  11. 'PI' => "Potaro-Siparuni",
  12. 'UD' => "Upper Demerara-Berbice",
  13. 'UT' => "Upper Takutu-Upper Essequibo");
  14. }
  15. /**
  16. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  17. */
  18. function location_bounds_gy() {
  19. return array(
  20. 'minlng' => -61.3364,
  21. 'minlat' => 1.278567,
  22. 'maxlng' => -56.5865,
  23. 'maxlat' => 8.373633,
  24. );
  25. }