Skip to main content
Computes spatial connected components across the entire dataframe using the ST_Covers predicate. Two geometries are in the same component if the first geometry covers the second (every point of the second geometry lies in the first). Returns a component ID for each row. ST_CoversCC
  • 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_CoversCC(geometry: Geometry)
ST_CoversCC(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_CoversCC(geom) FROM my_table
85899345920