location.cd.inc 721 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // Congo, The Democratic Republic of the
  3. function location_province_list_cd() {
  4. return array(
  5. 'BC' => "Bas-Congo",
  6. 'BN' => "Bandundu",
  7. 'EQ' => "Equateur",
  8. 'KA' => "Katanga",
  9. 'KE' => "Kasai-Oriental",
  10. 'KN' => "Kinshasa",
  11. 'KW' => "Kasai-Occidental",
  12. 'MA' => "Maniema",
  13. 'NK' => "Nord-Kivu",
  14. 'OR' => "Orientale",
  15. 'SK' => "Sud-Kivu",
  16. );
  17. }
  18. /**
  19. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  20. */
  21. function location_bounds_cd() {
  22. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  23. // EPSG:900913
  24. return array(
  25. 'minlng' => 12.2109131,
  26. 'minlat' => -13.458350,
  27. 'maxlng' => 31.2804468,
  28. 'maxlat' => 5.37528025,
  29. );
  30. }