用python将geojson变成json
时间: 2023-08-10 22:33:16 浏览: 300
在Python中,可以使用内置的 `json` 模块将 GeoJSON 转换为 JSON。示例代码如下:
```python
import json
# GeoJSON数据
geojson = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [102.0, 0.5]
},
"properties": {
"name": "GeoJSON"
}
}
]
}
# 将GeoJSON转换为JSON
json_data = json.dumps(geojson)
# 输出JSON数据
print(json_data)
```
输出结果:
```json
{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [102.0, 0.5]}, "properties": {"name": "GeoJSON"}}]}
```
注意,这里的 `geojson` 变量是一个示例对象,如果你需要将自己的GeoJSON转换为JSON,请替换示例中的对象。
阅读全文