GeoJSON 是否支持 FeatureCollection 列表?
Does GeoJSON support lists of FeatureCollection?
我有一个 FeatureCollection
的 JSON 数组,我想使用 http://geojson.tools/ or https://geojson.io/.
等工具对其进行可视化
[
{
"type": "FeatureCollection",
"features": [
...
]
},
{
"type": "FeatureCollection",
"features": [
...
]
},
{
"type": "FeatureCollection",
"features": [
...
]
}
]
但是我测试的所有工具都不支持 FeatureCollection
数组的可视化,因为这不是有效的 GeoJSON 元素。 :-(
GeoJSON 是否知道任何包含 FeatureCollection
列表的元素? (或者有什么方法可以可视化这些数据?)
根据 GeoJSON Format Specification,不支持 FeatureCollection 数组。
FeatureCollection 可以包含任意数量的不同几何特征,因此您应该能够将多个 FeatureCollection 组合成一个 FeatureCollection。
我有一个 FeatureCollection
的 JSON 数组,我想使用 http://geojson.tools/ or https://geojson.io/.
[
{
"type": "FeatureCollection",
"features": [
...
]
},
{
"type": "FeatureCollection",
"features": [
...
]
},
{
"type": "FeatureCollection",
"features": [
...
]
}
]
但是我测试的所有工具都不支持 FeatureCollection
数组的可视化,因为这不是有效的 GeoJSON 元素。 :-(
GeoJSON 是否知道任何包含 FeatureCollection
列表的元素? (或者有什么方法可以可视化这些数据?)
根据 GeoJSON Format Specification,不支持 FeatureCollection 数组。
FeatureCollection 可以包含任意数量的不同几何特征,因此您应该能够将多个 FeatureCollection 组合成一个 FeatureCollection。