Skip to content

Instantly share code, notes, and snippets.

@snasphysicist
Last active December 20, 2022 13:51
Show Gist options
  • Save snasphysicist/d115ab06849f30279925eb03b9a61f53 to your computer and use it in GitHub Desktop.
Save snasphysicist/d115ab06849f30279925eb03b9a61f53 to your computer and use it in GitHub Desktop.
A GeoJSON MultiPolygon Example
Display the source blob
Display the rendered blob
Raw
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
0,
0
],
[
30,
0
],
[
30,
30
],
[
0,
30
],
[
0,
0
]
]
],
[
[
[
60,
60
],
[
90,
60
],
[
90,
90
],
[
60,
90
],
[
60,
60
]
]
]
]}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment