Skip to main content
This function simplifies the input geometry by applying the Douglas-Peucker algorithm. ST_Simplify
The simplification may not preserve topology, potentially producing invalid geometries. Use ST_SimplifyPreserveTopology to retain valid topology after simplification.

Signatures

Parameters

geom
Geometry
required
The input geometry.
tolerance
Double
required
The distance tolerance.

Return type

The resulting geometry.

Example