地理坐标 vs 投影坐标
CRS 属性存储数据所采用的坐标参考系(Coordinate Reference System)的信息。在本练习中,您将探索巴黎 districts 数据集的 CRS 以及其坐标。
本练习是课程的一部分
在 Python 中处理地理空间数据
交互式实操练习
通过完成这段示例代码来试试这个练习。
# Import the districts dataset
districts = geopandas.read_file("paris_districts.geojson")
# Print the CRS information
print(____)
# Print the first rows of the GeoDataFrame
print(____)