arcgisshp转csv
时间: 2023-07-09 11:07:26 浏览: 151
shp转cad小工具
4星 · 用户满意度95%
可以使用 Python 的 `pandas` 库将 ArcGIS 的 shapefile 文件转换为 CSV 格式。以下是一个示例代码,假设你已经安装了 pandas 和 geopandas 库:
```python
import geopandas as gpd
shp_file = 'path/to/shapefile.shp'
csv_file = 'path/to/output/csv/file.csv'
# 读取 shapefile 文件
gdf = gpd.read_file(shp_file)
# 将数据保存为 CSV 文件
gdf.to_csv(csv_file, index=False)
```
这段代码会将 shapefile 文件中的所有数据读取到一个 `GeoDataFrame` 对象中,然后将其保存为一个 CSV 文件。你需要将 `path/to/shapefile.shp` 和 `path/to/output/csv/file.csv` 替换为实际的文件路径。如果你没有安装 geopandas 库,可以使用 pip 进行安装:
```
pip install geopandas
```
希望能帮到你!
阅读全文