Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的空间数据库使用 postgis。
在我的数据库中,我在一个表中有一组线,在另一个表中有一组点。如何确定哪个最适合作为两条线的交点?我所追求的是与 st_intersection 函数有关的东西。
PostGISST_INTERSECTION将为您提供两条线之间交点的几何形状,然后MIN(ST_DISTANCE([...], [...])在此交点和您的点之间的 a 将为您提供最佳拟合。
ST_INTERSECTION
MIN(ST_DISTANCE([...], [...])
http://www.postgis.org/docs/ST_Intersection.html http://www.postgis.org/docs/ST_Distance.html