タグ付けされた質問 「geopandas」

3
パンダで2つのgeodataframeを使用して最も近い距離を取得する
これが私の最初のgeodatframeです: !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)) 市1 City Country Latitude Longitude …

1
Geopandas ImportError:geopandasでポリゴンをプロットするにはデカルトパッケージが必要です
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 \ geopandas \ plotting.py」の90行目、「デカンダでポリゴンをプロットするにはデカルトパッケージが必要です。」 ImportError:geopandasでポリゴンをプロットするには、デカルトパッケージが必要です。 - オンラインで確認したところ、この問題のトラブルシューティングの解決策が見つかりませんでした。誰か助けてアドバイスしてくれませんか? 感謝。
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.