Skip to main content
Computes spatial connected components across the entire dataframe using the ST_Crosses predicate. Two geometries are in the same component if they cross (their intersection produces a geometry of lower dimension than the maximum dimension of the input geometries). Returns a component ID for each row. ST_CrossesCC
  • geometry is the geometry column to analyze.
  • partitionBy is an optional column to partition the data before computing connected components. When provided, the spatial predicate is only evaluated between rows that share the same partition value. This can significantly improve performance on large datasets.

Signatures

ST_CrossesCC(geometry: Geometry)
ST_CrossesCC(geometry: Geometry, partitionBy: Column)

Parameters

geometry
Geometry
required
The input geometry.
partitionBy
Column
The partition by value.

Return type

The connected component ID for each row.

Example

SELECT ST_CrossesCC(geom) FROM my_table
85899345920