python 查找多边形上最近点的坐标
摘要:from shapely.geometry import Polygon, Point, LinearRing poly = Polygon([(0, 0), (2, 8), (14, 10), (6, 1)]) point = Point(12, 4) pol_ext = LinearRing(p
阅读全文
posted @ 2022-03-07 10:56
posted @ 2022-03-07 10:56
posted @ 2022-03-02 16:20