如果我有一个GEOJson文件,例如一个名为test.js的文件,其中包含以下内容:
{ "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], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]
]
},
"properties": {
"prop0": "value0",
"prop1": 0.0
}
},
{ "type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0],
[100.0, 1.0], [100.0, 0.0] ]
]
},
"properties": {
"prop0": "value0",
"prop1": {"this": "that"}
}
}
]
}
如何用QGIS打开它?
我打开QGIS,按“添加矢量层”,选择“文件”,但无法打开它。
如果选择GEOJson格式,则文件不会显示在浏览器窗口中。
如果未指定输入类型,则会收到错误消息:“您的文件无效或无法识别的数据源”。
我该如何格式化该文件?
似乎缺少有关此主题的文档。
要在文件浏览器中查看文件,它应具有.geojson扩展名
—
Devdatta Tengshe 2014年