実現したいこと
pythonでgeopandasを使用してshpファイルを読み込みこもうとしたら、
エラーがでました。
エラー原因を調べたのですが、解決策の説明がよく分かりません。
教えていただいたら幸いです。
発生している問題・エラーメッセージ
module 'geopandas' has no attribute 'read_file'
該当のソースコード
python
1import geopandas as gpd 2shp=gpd.read_file("mesh.shp")
調べた解決策
You should not name your file name as geopandas.py. From the traceback of from geopandas import GeoSeries, GeoDataFrame, we can know that the file name you are using is geopandas.py and it makes Python import this file rather than the geopandas module. Change this file at the following path to other names and it should work.
from geopandas import GeoSeries, GeoDataFrame File "C:\Users\XXXXX\Documents\Python_Scripts\geopandas.py", line 1, in <module>