Skip to content

Instantly share code, notes, and snippets.

@keithamoss
Created October 14, 2016 04:46
Show Gist options
  • Save keithamoss/79d43e9a30a94023f153b337b95d12c6 to your computer and use it in GitHub Desktop.
Save keithamoss/79d43e9a30a94023f153b337b95d12c6 to your computer and use it in GitHub Desktop.
A GeoJSON dataset with two polygons (small polygon first, large polygon second)
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:OGC:1.3:CRS84"
}
},
"features": [
{
"type": "Feature",
"properties": {
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
115.70,
-33.40
],
[
115.60,
-33.38
],
[
115.63,
-33.30
],
[
115.64,
-33.30
],
[
115.70,
-33.40
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
127.30,
-29.01
],
[
119.49,
-32.28
],
[
118.43,
-27.10
],
[
125.90,
-21.44
],
[
127.30,
-29.01
]
]
]
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment