Table of Contents

Class SpatialConcaveHull

Namespace
YndigoBlue.Velocity.Functions
Assembly
YndigoBlue.Velocity.dll

Represents the ST_ConcaveHull spatial analysis function that computes a concave hull (alpha shape) around a geometry.

public class SpatialConcaveHull : Function, IElement, ICheckItem, IDefaultItem, IFilterItem
Inheritance
SpatialConcaveHull
Implements

Remarks

The ST_ConcaveHull function returns a polygon representing a concave hull that encloses a geometry, providing a tighter fit than a convex hull by allowing concave edges. The percentConvex parameter (0.0 to 1.0) controls the level of concavity, where 0.0 produces the most concave result possible and 1.0 approaches a convex hull. This is useful for creating boundary polygons that better follow the shape of point clusters or complex geometries. For Geometry types in planar coordinate systems, helpful for spatial clustering, point cloud analysis, or generating more accurate boundaries than convex hulls.

Constructors

SpatialConcaveHull(Column, float)

Initializes a new instance of ST_ConcaveHull with a geometry column and concavity parameter.