地理座標 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(____)