Created
August 24, 2019 09:39
-
-
Save andrewharvey/978590af4d5ebb1d0ed122da6ce7ebea to your computer and use it in GitHub Desktop.
GeoJSON Polygon with a hole
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": [ | |
[ | |
[ | |
-132.1875, | |
-71.74643171904148 | |
], | |
[ | |
172.6171875, | |
-71.74643171904148 | |
], | |
[ | |
172.6171875, | |
82.98340359715496 | |
], | |
[ | |
-132.1875, | |
82.98340359715496 | |
], | |
[ | |
-132.1875, | |
-71.74643171904148 | |
] | |
], | |
[ | |
[ | |
-19.6875, | |
-6.664607562172573 | |
], | |
[ | |
63.28125, | |
-6.664607562172573 | |
], | |
[ | |
63.28125, | |
54.36775852406841 | |
], | |
[ | |
-19.6875, | |
54.36775852406841 | |
], | |
[ | |
-19.6875, | |
-6.664607562172573 | |
] | |
] | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment