我有很多多边形需要手动绘制然后获取地理坐标。我需要获取 GeoJSON 格式绘制的多边形的坐标。
在这种格式中:
"{"type":"MultiPolygon","coordinates":[[[[37.4653933,55.3959159]...}"
"{"type":"Polygon","coordinates":[[[37.475738525390625,55.41420507450017]...}"
Run Code Online (Sandbox Code Playgroud)
或者在这个:
"{"type":"GeometryCollection","geometries":[{"type":"Polygon","coordinates":[[[-98.0419921875,39.027718840211605]...}]}"
Run Code Online (Sandbox Code Playgroud)
我在http://geojson.io/绘制多边形。但从这个网站我只能获取FeatureCollection类型格式的数据。我找到了另一个网站 - https://rodic.fr/blog/online-conversion- Between-geometric-formats/ ,我可以在该网站上转换为 GeoJSON 格式,但该网站只能转换类型 GeometryCollection。
我找不到如何将 FeatureCollection 转换为 GeometryCollection 或 MultiPolygon 或 Polygon。
怎么解决?非常感谢!