Forked from jeffreymorganio/uk-bounding-box.geojson
Last active
May 14, 2019 16:02
-
-
Save GraemeF/a8707bccd855f30f80b214efa5bd4528 to your computer and use it in GitHub Desktop.
Longitude and latitude bounding box around the UK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"properties": {}, | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [ | |
[ | |
[ | |
-11, | |
49 | |
], | |
[ | |
-11, | |
60 | |
], | |
[ | |
2, | |
60 | |
], | |
[ | |
2, | |
49 | |
], | |
[ | |
-11, | |
49 | |
] | |
] | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment