我可以在GeoJSON文件中使用坐标[Lat,Long,Elevation,Time],以便任何其他应用程序可以使用该文件

时间:2016-08-29 06:02:02

标签: json parsing geojson

我可以在GeoJSON文件中使用坐标[Lat,Long,Elevation,Time],以便任何其他应用程序可以使用该文件吗?

{ "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 and time in coordinate array elevation as numeric and time in string format

1 个答案:

答案 0 :(得分:0)

这将是geoJSON specification

正如他们在关于extending geoJSON的部分中所说,您可以扩展以添加外部成员,但任何改变已定义类型结构的内容都称为versioning geoJSON,因此对象不应该被称为geoJSON。

您可以查看他们为position array定义的规范。

TL; DR你可以,但它不再是geoJSON,并且解析器不能保证与它一起使用。