Skip to content

Instantly share code, notes, and snippets.

@danwild
Last active July 13, 2020 06:24
Show Gist options
  • Select an option

  • Save danwild/96fa9d6a7469ab98ddd5790b4129d6cf to your computer and use it in GitHub Desktop.

Select an option

Save danwild/96fa9d6a7469ab98ddd5790b4129d6cf to your computer and use it in GitHub Desktop.
GeoJSON with time example
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"id": 0,
"age": 1,
"time": "2005-08-22T09:01:00Z"
},
"geometry": {
"type": "Point",
"coordinates": [
146.9531,
-43.5803,
-2
]
}
},
{
"type": "Feature",
"properties": {
"id": 0,
"age": 1,
"time": "2005-08-23T09:01:00Z"
},
"geometry": {
"type": "Point",
"coordinates": [
146.8531,
-43.4803,
-3
]
}
},
{
"type": "Feature",
"properties": {
"id": 0,
"age": 1,
"time": "2005-08-24T09:01:00Z"
},
"geometry": {
"type": "Point",
"coordinates": [
146.7531,
-43.3803,
-4
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment