ClearSKY FaviconClearSKY Polygon Tools
Back to Glossary

Intersects (spatial predicate)

True when two geometries share any point in common (touching or overlapping).

Category: Topology · Also known as: ST_Intersects, intersects predicate

Definition (expanded)

Intersects is the broad “do these touch at all?” predicate. It returns true for overlaps, touches, and containment cases. It’s commonly used for bounding filters and first-pass spatial joins.

Examples

PostGIS intersects

SQL

SELECT ST_Intersects(a.geom, b.geom) FROM a, b;