Created
November 14, 2019 08:57
-
-
Save alexbnlee/d4cd170f28af7ced8e7fb3700efcfe65 to your computer and use it in GitHub Desktop.
Longitude and latitude bounding box around AUS
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": [ | |
| [ | |
| [ | |
| 112, | |
| -44 | |
| ], | |
| [ | |
| 112, | |
| -9 | |
| ], | |
| [ | |
| 154, | |
| -9 | |
| ], | |
| [ | |
| 154, | |
| -44 | |
| ], | |
| [ | |
| 112, | |
| -44 | |
| ] | |
| ] | |
| ] | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment