processing
This module contains functions that computes new geographies by processing existing geographies.
ST_DELAUNAYLINES
Description
Calculates the Delaunay triangulation of the points provided. A MultiLineString object is returned.
points
:GEOMETRY
MultiPoint input to the Delaunay triangulation.
warning
The maximum number of points typically used to compute Delaunay diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points.
Return type
VARCHAR(MAX)
Example
ST_DELAUNAYPOLYGONS
Description
Calculates the Delaunay triangulation of the points provided. A MultiPolygon object is returned.
points
:GEOMETRY
MultiPoint input to the Delaunay triangulation.
warning
The maximum number of points typically used to compute Delaunay diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points.
Return type
VARCHAR(MAX)
Example
ST_POLYGONIZE
Description
Creates a polygon from a geography which contains lines that represent its edges.
line
:GEOMETRY
lines which represent the polygon edges.
Return type
GEOMETRY
Example
ST_VORONOILINES
Description
Calculates the Voronoi diagram of the points provided. A MultiLineString object is returned.
points
:GEOMETRY
MultiPoint input to the Voronoi diagram.
warning
The maximum number of points typically used to compute Voronoi diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points.
Return type
VARCHAR(MAX)
Example
ST_VORONOIPOLYGONS
Description
Calculates the Voronoi diagram of the points provided. A MultiPolygon object is returned.
points
:GEOMETRY
MultiPoint input to the Voronoi diagram.
warning
The maximum number of points typically used to compute Voronoi diagrams is 300,000. This limit ensures efficient computation while maintaining accuracy in delineating regions based on proximity to specified points.
Return type
VARCHAR(MAX)
Example
Last updated