«geopandas» etiketlenmiş sorular

3
Pandalardaki iki coğrafi veri çerçevesi ile en yakın mesafeyi alın
İşte ilk geodatframe'im: !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, geometry=geopandas.points_from_xy(city2df.Longitude, city2df.Latitude)) City1 City Country …

1
Geopandas ImportError: Geopandalarda çokgen çizmek için descartes paketi gereklidir
ANACONDA spyder kullanarak basit bir geopandas kodu çalıştırmak çalışıyorum. Ancak bir hatayla karşılaşıyorum. Aşağıdaki gibi kodu ve hatayı dahil ettim: - İşte kod: import geopandas as gpd world = gpd.read_file(gpd.datasets.get_path('naturalearth_lowres')) world.plot() import matplotlib.pyplot as plt plt.show() - İşte hata: Plot_polygon_collection içinde "C: \ Users \ usr \ Anaconda3 \ lib …
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.