我想使用 python / 计算一个点和一个国家的边界之间的距离shapely
。它应该可以正常工作 point.distance(poly) 例如此处演示Find Coordinate of Closest Point on Polygon Shapely但使用geopandas
我面临的问题是:
'GeoSeries' object has no attribute '_geom'
我处理数据有什么问题?我的边界数据集来自http://www.gadm.org/
我想使用 python / 计算一个点和一个国家的边界之间的距离shapely
。它应该可以正常工作 point.distance(poly) 例如此处演示Find Coordinate of Closest Point on Polygon Shapely但使用geopandas
我面临的问题是:
'GeoSeries' object has no attribute '_geom'
我处理数据有什么问题?我的边界数据集来自http://www.gadm.org/
根据geopandas文档,GeoSeries 是几何图形的向量(在您的情况下,0 (POLYGON...
告诉您只有一个对象,但它仍然是向量)。应该有一种方法可以获取第一个几何元素。GeoSeries 类实现了该__getitem__
方法,因此austriaBorders.geometry[0]
应该为您提供所需的几何图形。因此,尝试使用point.distance(austriaBorders.geometry[0])
.
如果您只需要到某个点的距离,GeoSeries
则该distance
方法已实现,但它将返回一个向量,其中包含到它包含的每个几何图形的距离(根据文档)。