jupyter notebook 导出shp文件
时间: 2023-04-01 16:01:48 浏览: 318
读取shp文件中数据
5星 · 资源好评率100%
可以使用 geopandas 库来导出 shp 文件。首先需要安装 geopandas 库,然后在 jupyter notebook 中导入该库并读取数据,最后使用 to_file() 方法导出 shp 文件。具体操作可以参考以下代码:
```python
import geopandas as gpd
# 读取数据
data = gpd.read_file('data.geojson')
# 导出 shp 文件
data.to_file('data.shp', driver='ESRI Shapefile')
```
其中,data.geojson 是要导出的数据文件,data.shp 是导出的 shp 文件名。
阅读全文