Table of Contents

Constructor SpatialConcaveHull

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

SpatialConcaveHull(Column, float)

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

public SpatialConcaveHull(Column column, float percentConvex)

Parameters

column Column

The geometry column to compute the concave hull for.

percentConvex float

The target percent of convexity (0.0 = most concave, 1.0 = convex hull).

SpatialConcaveHull(Geometry, float)

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

public SpatialConcaveHull(Geometry geometry, float percentConvex)

Parameters

geometry Geometry

The geometry to compute the concave hull for.

percentConvex float

The target percent of convexity (0.0 = most concave, 1.0 = convex hull).

SpatialConcaveHull(Geography, float)

Initializes a new instance of ST_ConcaveHull with a geography literal and concavity parameter.

public SpatialConcaveHull(Geography geography, float percentConvex)

Parameters

geography Geography

The geography to compute the concave hull for.

percentConvex float

The target percent of convexity (0.0 = most concave, 1.0 = convex hull).

SpatialConcaveHull(Function, float)

Initializes a new instance of ST_ConcaveHull for a function result.

public SpatialConcaveHull(Function function, float percentConvex)

Parameters

function Function

The function that returns a geometry/geography to compute the concave hull for.

percentConvex float

The target percent of convexity (0.0 = most concave, 1.0 = convex hull).