如何在具有多边形的形状蟒蛇的多边形中打洞

时间:2018-02-13 16:01:07

标签: python polygon shapely

在python中,我有一个普通的Polygon“outer”和一个多边形“inners”列表。我想用这个列表在我的多边形上打洞。

from shapely.geometry import Polygon

# polygon with 1 hole in the middle
p = Polygon(((0,0),(10,0),(10,10),(0,10)), (((4,4),(4,6),(6,6),(6,4)), ))
print p.wkt
# POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0), (4 4, 4 6, 6 6, 6 4, 4 4))

# other constructor, does not work (no hole) :
outer = Polygon(((0,0),(10,0),(10,10),(0,10),(0,0)))
inners = (Polygon(((4,4),(4,6),(6,6),(6,4),(4,4))), )
p = Polygon(outer, inners)
print p.wkt
# POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))

如何构建给定的外部和内部?

1 个答案:

答案 0 :(得分:4)

抱歉,我刚刚找到了一个解决方案,将outer作为普通多边形,inners作为普通多边形列表(每个包含在outer中):

p = Polygon(outer.exterior.coords, [inner.exterior.coords for inner in inners])

Polygon构造函数仅适用于坐标作为输入,而不适用于其他多边形,例如:

p = Polygon(outer, inners)