在地图上找到线下的所有点

时间:2018-07-11 04:02:22

标签: python matplotlib computational-geometry cross-product

为了在具有很多点(近两千个)的地图上的两个点之间绘制路径,我使用以下功能:

def path_between_cities(self, cities_with_coordinates, from_to):

        from matplotlib.lines import Line2D     

        # coordinates from chosen path
        x = [int(from_to[0][2]), int(from_to[1][2])]
        y = [int(from_to[0][1]), int(from_to[1][1])]

        #create line
        line = Line2D(x,y,linestyle='-',color='k')

        # create axis
        x_ = np.array((0,2000))
        y_ = np.array((0,6000))

        plt.plot(x_,y_, 'o')

        for item in cities_with_coordinates:
            name = item[0]
            y_coord = int(item[1])
            x_coord = int(item[2])
            plt.plot([x_coord], [y_coord], marker='o', markersize=1, color='blue')
            plt.axes().add_line(line)

        plt.axis('scaled')
        plt.show()

我的目标是提取在绘制线下方找到的所有点(坐标)。

我知道您可以使用cross product of vectors

给定大量矢量,在上述情况下实现此目标的最有效方法是什么?

1 个答案:

答案 0 :(得分:1)

每个跨产品操作仍为O(1)。您可以对所有点运行以下功能,然后查看其中哪些在下面,从而进行线性时间检查。

def ccw(a,b,c):
    """ Returns 1 if c is above directed line ab else returns -1"""
    return (b.x - a.x) * (c.y - a.y) - (c.x - a.x) * (b.y - a.y)
    #a and b are the vertices and c is the test point.

除非您有关于这些点的其他信息,否则您必须检查每个点是否在特定线下。