json - Can I Use coordinate [Lat,Long, Elevation, Time ]in GeoJSON File so that file can be used by any other Applications -


can use coordinates [lat,long, elevation, time] in geojson file file can used other application?

{ "type": "feature",     "geometry": {       "type": "linestring",       "coordinates": [         [102.0, 0.0,805,"22-08-2016 13:04:04"],         [103.0, 1.0,806,"22-08-2016 13:05:04"],         [104.0, 0.0,804,"22-08-2016 13:06:00"],         [105.0, 1.0,808,"22-08-2016 13:07:40"]]        },     "properties": {       "prop0": "value0",       "prop1": 0.0       }     }   // "using elevation , time in coordinate array elevation numeric , time in string format 

this geojson specification.

as in section extending geojson can extend add foreign members, alters structure of defined types referred versioning geojson, , such kind of object should not called geojson.

you can check specifications define position array.

tl;dr can, wont geojson anymore , parsers not guaranteed work it.


Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -