Skip to content

Instantly share code, notes, and snippets.

@kelsey-sorrels
Created October 23, 2012 04:46
Show Gist options
  • Save kelsey-sorrels/3936750 to your computer and use it in GitHub Desktop.
Save kelsey-sorrels/3936750 to your computer and use it in GitHub Desktop.
rSimulate GeoJSON example
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[100, 0.002, 10000],
[102.1, 1, 1000]
],
[
[102, 0.002, 10000],
[104.1, 1, 1000]
]
]
},
"properties": {
"type": "Elevation"
}
},
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[100, 0.002, 10000],
[102.1, 1, 1000]
],
[
[102, 0.002, 10000],
[104.1, 1, 1000]
]
]
},
"properties": {
"type": "Water"
}
},
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[100, 0.002, 10000],
[102.1, 1, 1000]
],
[
[102, 0.002, 10000],
[104.1, 1, 1000]
]
]
},
"properties": {
"type": "AtmosphericMoisture"
}
},
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[100, 0.002, 10000],
[102.1, 1, 1000]
],
[
[102, 0.002, 10000],
[104.1, 1, 1000]
]
]
},
"properties": {
"type": "SoilMoisture"
}
},
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[100, 0.002, 10000],
[102.1, 1, 1000]
],
[
[102, 0.002, 10000],
[104.1, 1, 1000]
]
]
},
"properties": {
"type": "Snow"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [100, 0.002, 10000]
},
"properties": {
"type": "Migrant",
"culture": {
"name": "..."
}
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [100, 0.002, 10000]
},
"properties": {
"type": "Settlement",
"population": 1353,
"culture": {
"name": "..."
}
}
}
],
"properties": {
"name": "project-name",
"authors": [
"me",
"someone else"
],
"version": "0.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment