function location_bounds_ac in Location 7.3
Same name and namespace in other branches
- 5.3 supported/location.ac.inc \location_bounds_ac()
- 6.3 supported/location.ac.inc \location_bounds_ac()
- 7.5 supported/location.ac.inc \location_bounds_ac()
- 7.4 supported/location.ac.inc \location_bounds_ac()
Returns minimum and maximum latitude and longitude needed to create a bounding box.
File
- supported/
location.ac.inc, line 18 - Ascension Island.
Code
function location_bounds_ac() {
// NaturalEarth 10m Admin 0 - Countries (v1.3.0)
// Bounds manually eyeballed by bdragon in EPSG:4326 using the coordinate
// readout in udig, because the poly is grouped with Saint Helena.
return array(
'minlng' => -14.4278,
'minlat' => -7.9875,
'maxlng' => -14.2581,
'maxlat' => -7.863,
);
}