Geographic बनाम projected coordinates
CRS एट्रिब्यूट उस Coordinate Reference System की जानकारी स्टोर करता है जिसमें डेटा को दर्शाया गया है। इस अभ्यास में, आप पेरिस के जिलों वाले districts डेटासेट के CRS और उसकी coordinates की जाँच करेंगे।
यह अभ्यास पाठ्यक्रम का हिस्सा है
Python में Geospatial Data के साथ काम करना
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# Import the districts dataset
districts = geopandas.read_file("paris_districts.geojson")
# Print the CRS information
print(____)
# Print the first rows of the GeoDataFrame
print(____)