ST_Intersects — Returns TRUE if the Geometries "spatially intersect" - (share any portion of space) and FALSE if they don't (they are Disjoint).
boolean ST_Intersects(
geometry
A
,
geometry
B
)
;
Overlaps, Touches, Within all imply spatial intersection. If any of the aforementioned returns true, then the geometries also spatially intersect. Disjoint implies false for spatial intersection.
Do not call with a |
Performed by the GEOS module
This function call will automatically include a bounding box comparison that will make use of any indexes that are available on the geometries. |
NOTE: this is the "allowable" version that returns a boolean, not an integer. |
This method implements the OpenGIS Simple Features Implementation Specification for SQL OGC SPEC s2.1.1.2 //s2.1.13.3 - ST_Intersects(g1, g2 ) --> Not (ST_Disjoint(g1, g2 ))
This method implements the SQL/MM specification: SQL-MM 3: 5.1.27