Created
October 23, 2012 04:46
-
-
Save kelsey-sorrels/3936750 to your computer and use it in GitHub Desktop.
rSimulate GeoJSON example
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", | |
"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