Currently, I have an application generating time series spacial data. The data is weather data with coordinates and a time of reading.
I would like to receive chunks of the data in a time series way and I am currently using a generated CSV as a response to input requests
temperature,latitude,longitude,timestamp,
10,50,4,11,1610138555,
...
...
I am used to working with geojson and would like the coordinates to be 4 dimensional I.e. 3 spacial directions and time.
{ "type": "FeatureCollection",
"features": [
{ "type": "Feature",
"geometry": {"type": "Point", "coordinates": [102.0, 0.5]},
"properties": {"prop0": "value0"}
},
{ "type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[102.0, 0.0, 100, 123456], [103.0, 1.0, 105, 123456], [104.0, 0.0, 106, 123456], [105.0, 1.0, 107, 123456]
]
},
"properties": {
"prop0": "value0",
"prop1": 0.0
}
}
]
}
The purpose is to represent mobile sensors that run on a trajectory and I would like to have the data clearly represented.
Any suggestions on good JSON formats? Ideally something with a common standard similar to GeoJSON would be ideal.