시작하기무료로 시작하기

Geographic vs projected coordinates

CRS 속성에는 데이터가 표현되는 좌표 기준계(Coordinate Reference System)에 대한 정보가 저장돼요. 이번 연습 문제에서는 파리의 구(districts) 정보를 담은 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(____)
코드 편집 및 실행