4

我有一个 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

但我无法获取这些信息并修改原始网格

4

1 回答 1

2

你已经很接近了;而不是打印 True,您可以将点附加到列表中。

output = []
for i in reshaped:
    if Point(i).within(poly):
        output.append(i)

output = np.array(output)
x, y = output[:, 0], output[:, 1]

似乎Point.within并不认为位于多边形边缘的点在“内部”。

于 2014-10-09T18:07:10.320 回答