GEP/test/test_demo.py

8 lines
149 B
Python
Raw Normal View History

2024-03-26 11:13:08 +08:00
import geopandas as gpd
# shp文件路径
file_path = '../Files/伊金霍洛旗地类.shp'
2024-03-26 11:24:50 +08:00
gdf = gpd.read_file(file_path)
# 打印数据
print(gdf)