Package org.h2gis.functions.spatial.edit
Class ST_Densify
- java.lang.Object
-
- org.h2gis.api.AbstractFunction
-
- org.h2gis.api.DeterministicScalarFunction
-
- org.h2gis.functions.spatial.edit.ST_Densify
-
- All Implemented Interfaces:
org.h2gis.api.Function,org.h2gis.api.ScalarFunction
public class ST_Densify extends org.h2gis.api.DeterministicScalarFunctionDensifies a geometry using the given distance tolerance.- Author:
- Erwan Bocher
- See Also:
Densifier
-
-
Constructor Summary
Constructors Constructor Description ST_Densify()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static org.locationtech.jts.geom.Geometrydensify(org.locationtech.jts.geom.Geometry geometry, double tolerance)Densify a geometry using the given distance tolerance.StringgetJavaStaticMethod()-
Methods inherited from class org.h2gis.api.AbstractFunction
addProperty, getProperty, removeProperty
-
-
-
-
Method Detail
-
getJavaStaticMethod
public String getJavaStaticMethod()
-
densify
public static org.locationtech.jts.geom.Geometry densify(org.locationtech.jts.geom.Geometry geometry, double tolerance)Densify a geometry using the given distance tolerance.- Parameters:
geometry- Geometrytolerance- Distance tolerance- Returns:
- Densified geometry
-
-