地理座標と投影座標の違い
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(____)