“名称‘pygeos’”未定义”
执行 df = gpd.GeoDataFrame(df1, crs = 'EPSG:4326',ometry = geopandas.points_from_xy(df1.longitude,df1.latitude)) 时,我得到“名称 'pygeos' 未定义”,但我已经安装了 pygeos 目录中
在我 dev 和python3.9/site-packages/geopandas/_vectorized.py 的 来自 xy 的点(x,y,z) 第247章 第248章 -->第249章 250 其他: 251 out = _points_from_xy(x, y, z)
anf import pygeos 位于脚本中。有没有一种特定的方法可以很好地安装 pygeos 以避免此类错误?谢谢
When doing df = gpd.GeoDataFrame(df1, crs = 'EPSG:4326', geometry = geopandas.points_from_xy(df1.longitude,df1.latitude)) I get "name 'pygeos' is not defined", yet I have installed pygeos in the directory where I dev and
python3.9/site-packages/geopandas/_vectorized.py in points_from_xy(x, y, z)
247
248 if compat.USE_PYGEOS:
--> 249 return pygeos.points(x, y, z)
250 else:
251 out = _points_from_xy(x, y, z)
anf import pygeos is in the script. Is there a specific way to well install pygeos in order to avoid such error ? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知怎的,这对我来说是这样的。
这是关于设置常量并按特定顺序导入包。
Somehow this did it for me.
It was about setting the constant and importing packages in a specific order.