我有一个 10 x 10 的网格,我想删除形状多边形之外的点:
import numpy as np
from shapely.geometry import Polygon, Point
from descartes import PolygonPatch
gridX, gridY = np.mgrid[0.0:10.0, 0.0:10.0]
poly = Polygon([[1,1],[1,7],[7,7],[7,1]])
#plot original figure
fig = plt.figure()
ax = fig.add_subplot(111)
polyp = PolygonPatch(poly)
ax.add_patch(polyp)
ax.scatter(gridX,gridY)
plt.show()
这是结果图:
我希望最终结果看起来像:
我知道我可以将数组重塑为 100 x 2 的网格点数组:
stacked = np.dstack([gridX,gridY])
reshaped = stacked.reshape(100,2)
我可以轻松查看该点是否位于多边形内:
for i in reshaped:
if Point(i).within(poly):
print True
但我无法获取这些信息并修改原始网格