728x90
Geopandas 써보려고 하던 중 데이터를 쓰려고하는데 geodatasets가 설치가 안됨 ㅠㅠ
#에러코드
import geodatasets
geodatasets.data
geodatasets.get_path('geoda airbnb')
#수정코드
import geopandas as gpd
gpd.read_file(gpd.datasets.get_path('naturalearth_lowres'))
#사용가능 geopandas 샘플데이터셋
geopandas.datasets.available = ['naturalearth_cities', 'naturalearth_lowres', 'nybb']
geodatasets는 왜 안되는지 모르겠지만...
그냥 geopandas 로 사용하면 됐다!
그럼 뿅!
반응형