GEP/test/test_demo.py

8 lines
149 B
Python

import geopandas as gpd
# shp文件路径
file_path = '../Files/伊金霍洛旗地类.shp'
gdf = gpd.read_file(file_path)
# 打印数据
print(gdf)