Class ST_ConcaveHull
- java.lang.Object
-
- org.h2gis.api.AbstractFunction
-
- org.h2gis.api.DeterministicScalarFunction
-
- org.h2gis.functions.spatial.operators.ST_ConcaveHull
-
- All Implemented Interfaces:
org.h2gis.api.Function,org.h2gis.api.ScalarFunction
public class ST_ConcaveHull extends org.h2gis.api.DeterministicScalarFunctionCompute the concave geometry that encloses the vertices of the input geometry
-
-
Constructor Summary
Constructors Constructor Description ST_ConcaveHull()Default constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static org.locationtech.jts.geom.Geometryexecute(org.locationtech.jts.geom.Geometry geometry)Compute the concave geometry that encloses the vertices of the input geometrystatic org.locationtech.jts.geom.Geometryexecute(org.locationtech.jts.geom.Geometry geometry, double ratio, boolean allow_holes)Compute the concave geometry that encloses the vertices of the input geometrystatic org.locationtech.jts.geom.Geometryexecute(org.locationtech.jts.geom.Geometry geometry, org.h2.value.Value param)Compute the concave geometry that encloses the vertices of the input geometryStringgetJavaStaticMethod()-
Methods inherited from class org.h2gis.api.AbstractFunction
addProperty, getProperty, removeProperty
-
-
-
-
Method Detail
-
getJavaStaticMethod
public String getJavaStaticMethod()
-
execute
public static org.locationtech.jts.geom.Geometry execute(org.locationtech.jts.geom.Geometry geometry)
Compute the concave geometry that encloses the vertices of the input geometry- Parameters:
geometry- input geometry- Returns:
- the concave geometry
-
execute
public static org.locationtech.jts.geom.Geometry execute(org.locationtech.jts.geom.Geometry geometry, org.h2.value.Value param) throws SQLExceptionCompute the concave geometry that encloses the vertices of the input geometry- Parameters:
geometry- input geometryparam- set true to allow hole or a double value to increase the hull concaveness- Returns:
- the concave geometry
- Throws:
SQLException
-
execute
public static org.locationtech.jts.geom.Geometry execute(org.locationtech.jts.geom.Geometry geometry, double ratio, boolean allow_holes)Compute the concave geometry that encloses the vertices of the input geometry- Parameters:
geometry- input geometryratio- concaveness ratioallow_holes- true to allow hole- Returns:
- the concave geometry
-
-