2

我想要给定多边形中相交点的结果,但出现错误。

我的代码是:

from pysal.cg.standalone import get_polygon_point_intersect
poly=pysal.open('Busroute_buffer.shp')
point=pysal.open('pmpml_24.shp')

i=get_polygon_point_intersect(poly,point)

但我收到错误消息:

“PurePyShpWrapper”对象没有属性“bounding_box”

4

1 回答 1

1

pysal.open返回一个形状“文件”对象,而不是形状。

要获取形状,您需要遍历文件,或调用文件的 read 方法,该方法返回形状列表。即使您的文件中只有 1 个形状,这也会返回一个列表。get_polygon_point_intersect恰好需要 1 个多边形和 1 个点,因此您需要为要比较的每个点/多边形调用它。

point_file = pysal.open('points.shp')
polygon_file = pysal.open('polygons.shp')
# .read with no arguments returns a list of all shapes in the file.
polygons = polygon_file.read()
for polygon in polygons:
    # for x in shapefile: iterates over each shape in the file.
    for point in point_file:
        if get_polygon_point_intersect(polygon, point):
            print point, 'intersects with', polygon

还有其他可能更有效的方法来做到这一点。有关pysal.cg.locators更多信息,请参阅。

*以上代码未经测试,仅供参考。

于 2015-06-09T19:10:50.497 回答