location.kp.inc 825 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // Korea, Democratic People's Republic Of (North Korea)
  3. function location_province_list_kp() {
  4. return array(
  5. 'CHA' => "Chagang-do",
  6. 'HAB' => "Hamgyong-bukto",
  7. 'HAN' => "Hamgyong-namdo",
  8. 'HWB' => "Hwanghae-bukto",
  9. 'HWN' => "Hwanghae-namdo",
  10. 'KAN' => "Kangwon-do",
  11. 'PYB' => "P'yongan-bukto",
  12. 'PYN' => "P'yongan-namdo",
  13. 'YAN' => "Ryanggang-do (Yanggang-do)",
  14. 'NAJ' => "Rason Directly Governed City",
  15. 'PYO' => "P'yongyang Special City",
  16. );
  17. }
  18. /**
  19. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  20. */
  21. function location_bounds_kp() {
  22. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  23. // EPSG:900913
  24. return array(
  25. 'minlng' => 124.322106,
  26. 'minlat' => 37.6754275,
  27. 'maxlng' => 130.700476,
  28. 'maxlat' => 43.0102698,
  29. );
  30. }