postGis 中的 MSSQL geomerty.Filter(几何)

MSSQL geomerty.Filter(geometry) in postGis

我在 MSSQL 中有一个存储过程,行

WHERE [geometryColumn].Filter(@geometryRegion) = 1

如何将其转换为 postGis 语法?

谢谢

找到了(就在我发布问题之后)...

WHERE ST_Intersects(geometryColumn, geometryRegion) = true

Bear in mind that there is a ST_Intersection and ST_Intersects. the one you need is "intersects"