location.pg.inc 862 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // Papua New Guinea
  3. function location_province_list_pg() {
  4. return array('BV' => "Bougainville",
  5. 'CE' => "Central",
  6. 'CH' => "Chimbu",
  7. 'EH' => "Eastern Highlands",
  8. 'EB' => "East New Britain",
  9. 'ES' => "East Sepik",
  10. 'EN' => "Enga",
  11. 'GU' => "Gulf",
  12. 'MD' => "Madang",
  13. 'MN' => "Manus",
  14. 'MB' => "Milne Bay",
  15. 'MR' => "Morobe",
  16. 'NC' => "National Capital",
  17. 'NI' => "New Ireland",
  18. 'NO' => "Northern",
  19. 'SA' => "Sandaun",
  20. 'SH' => "Southern Highlands",
  21. 'WE' => "Western",
  22. 'WH' => "Western Highlands",
  23. 'WB' => "West New Britain");
  24. }
  25. /**
  26. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  27. */
  28. function location_bounds_pg() {
  29. return array(
  30. 'minlng' => 140.8018,
  31. 'minlat' => -11.691233,
  32. 'maxlng' => 159.50015,
  33. 'maxlat' => -0.784233,
  34. );
  35. }