location.et.inc 633 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // Ethiopia
  3. function location_province_list_et() {
  4. return array('AF' => "Afar",
  5. 'AH' => "Amhara",
  6. 'BG' => "Benishangul-Gumaz",
  7. 'GB' => "Gambela",
  8. 'HR' => "Hariai",
  9. 'OR' => "Oromia",
  10. 'SM' => "Somali",
  11. 'SN' => "Southern Nations - Nationalities and Peoples Region",
  12. 'TG' => "Tigray",
  13. 'AA' => "Addis Ababa",
  14. 'DD' => "Dire Dawa");
  15. }
  16. /**
  17. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  18. */
  19. function location_bounds_et() {
  20. return array(
  21. 'minlng' => 33.0563,
  22. 'minlat' => 3.550567,
  23. 'maxlng' => 47.97805,
  24. 'maxlat' => 19.896167,
  25. );
  26. }