2
QGIS에서 지오메트리가 혼합 된 GeoJSON 파일을 열 수 있습니까?
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", …