shapely parallel_offset有时不会产生闭环

时间:2018-01-26 13:12:51

标签: python plot geometry shape shapely

我正在使用parallel_offset包的shapely函数来获取一些闭环的多边形的偏移结构。我有几个多边形,很多具有相似的形状。然而,大约10-25%的人不会从parallel_offset生成闭环。这是一个不起作用的形状的MWE:

import matplotlib.pyplot as plt
from shapely.geometry.polygon import LinearRing

def plot_line(ax, ob, color):
    x, y = ob.xy
    ax.plot(x, y, color=color, alpha=0.7, linewidth=3, 
            solid_capstyle='round', zorder=2)

polygon = [[-29.675, -30.675],
           [-28.4094, -29.4094],
           [-28.325, -29.325],
           [-28.325, -29.764],
           [-28.325, -29.7933],
           [-28.4587, -29.8274],
           [-28.4676, -29.8297],
           [-28.5956, -29.8814],
           [-28.6041, -29.8848],
           [-28.724, -29.953],
           [-28.732, -29.9576],
           [-28.8417, -30.0413],
           [-28.849, -30.0469],
           [-28.9466, -30.1445],
           [-28.9531, -30.151],
           [-29.0368, -30.2607],
           [-29.0424, -30.268],
           [-29.1106, -30.3879],
           [-29.1152, -30.3959],
           [-29.1669, -30.5239],
           [-29.1703, -30.5324],
           [-29.2044, -30.6661],
           [-29.2067, -30.675],
           [-29.6457, -30.675],
           [-29.675, -30.675]]

poly_line = LinearRing(polygon)
poly_line_offset = poly_line.parallel_offset(0.05, side="left", resolution=16, 
                                             join_style=2, mitre_limit=1)
fig = plt.figure()
ax = fig.add_subplot(111)
plot_line(ax, poly_line, "blue")
plot_line(ax, poly_line_offset, "green")
plt.show()

Blue plot original polygon, green plot offset polygon

如您所见,绿色偏移多边形不会在顶点列表中的第一个/最后一个点处关闭。然而,其他非常相似的形状可以按预期工作。它们具有相同的数据结构,并且具有相同的起点/终点,如上面的示例所示。 join_style属性不会将结果更改为我想要的结果。更改resolutiondistance也无济于事。 documentation也没有解决此问题。

你有什么指导吗?我使用的是匀称的1.6.3。

1 个答案:

答案 0 :(得分:2)

不完全确定为什么会发生这种情况,但您可能会使用基于here方法的变通方法:

poly_line = LinearRing(polygon)
poly_line_offset = poly_line.buffer(0.05, 
                       resolution=16, join_style=2, mitre_limit=1).exterior

使用您的数据,这会产生(可能)期望的结果: buffer