标签: mysql distance contains spatial mysql-spatial
我使用mysql空间函数。
我必须了解点是否位于多面中,必须包括桥。
我的实验表明ST_Contains不包含Multipolygon的边框
ST_Contains
因此,到目前为止,我有2种看起来像在工作的解决方案: 1. ST_Contains(g1,g2) || ST_Touches(g1, g2) 2. ST_distance(g1,g2)=0
ST_Contains(g1,g2) || ST_Touches(g1, g2)
ST_distance(g1,g2)=0
这些解决方案是否等效?