python – 在Point的任一侧获取LineString上的顶点

我有一个匀称的LineString,并定义了一个沿着LineString的形状Point.

如何找到位于该点两侧的LineString的顶点? (将线分成两部分)

解决方法:

在PointString中找到该点所在的线段.然后相应地将LineString的顶点分成两组.要定位线段,只需将点/线段交叉测试应用于每个线段.

from shapely.geometry import Point,LineString

def split(line_string, point):
    coords = line_string.coords
    j = None

    for i in range(len(coords) - 1):
        if LineString(coords[i:i + 2]).intersects(point):
           j = i
           break

    assert j is not None

    # Make sure to always include the point in the first group
    if Point(coords[j + 1:j + 2]).equals(point):
        return coords[:j + 2], coords[j + 1:]
    else:
        return coords[:j + 1], coords[j:]
上一篇:java – 具有中心,半径和法向量的圆周上的3d点


下一篇:javascript-围绕球体的对象的三个js旋转