«geopandas» 태그된 질문

3
팬더에서 두 개의 지리 데이터 프레임으로 가장 가까운 거리를 얻으십시오.
여기 내 첫 번째 지오 데이트 프레임이 있습니다. !pip install geopandas import pandas as pd import geopandas city1 = [{'City':"Buenos Aires","Country":"Argentina","Latitude":-34.58,"Longitude":-58.66}, {'City':"Brasilia","Country":"Brazil","Latitude":-15.78 ,"Longitude":-70.66}, {'City':"Santiago","Country":"Chile ","Latitude":-33.45 ,"Longitude":-70.66 }] city2 = [{'City':"Bogota","Country":"Colombia ","Latitude":4.60 ,"Longitude":-74.08}, {'City':"Caracas","Country":"Venezuela","Latitude":10.48 ,"Longitude":-66.86}] city1df = pd.DataFrame(city1) city2df = pd.DataFrame(city2) gcity1df = geopandas.GeoDataFrame( city1df, geometry=geopandas.points_from_xy(city1df.Longitude, city1df.Latitude)) gcity2df = geopandas.GeoDataFrame( city2df, …

1
Geopandas ImportError : geopandas에서 다각형을 플로팅하려면 descartes 패키지가 필요합니다
ANACONDA 스파이더를 사용하여 간단한 geopandas 코드를 실행하려고합니다. 그러나 오류가 발생했습니다. 코드와 오류를 다음과 같이 포함했습니다. - 코드는 다음과 같습니다. import geopandas as gpd world = gpd.read_file(gpd.datasets.get_path('naturalearth_lowres')) world.plot() import matplotlib.pyplot as plt plt.show() - 여기 오류가 있습니다 : plot_polygon_collection의 "C : \ Users \ usr \ Anaconda3 \ lib \ site-packages …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.