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
更多信息,请参阅。
*以上代码未经测试,仅供参考。