grads 读取shp
时间: 2023-07-18 15:04:14 浏览: 148
grads使用手册
要读取 shp 文件,你可以使用 Python 库 `geopandas`。首先,你需要安装该库:
```
pip install geopandas
```
然后,你可以使用以下代码读取 shp 文件:
```python
import geopandas as gpd
# 读取 shp 文件
gdf = gpd.read_file('path/to/your/file.shp')
# 显示前几行数据
print(gdf.head())
```
此外,你还可以使用 `matplotlib` 库将 shp 文件可视化:
```python
import matplotlib.pyplot as plt
# 绘制 shp 文件
gdf.plot()
plt.show()
```
这样,你就可以读取和可视化 shp 文件了。
阅读全文