Class ST_Translate
- java.lang.Object
-
- org.h2gis.api.AbstractFunction
-
- org.h2gis.api.DeterministicScalarFunction
-
- org.h2gis.functions.spatial.affine_transformations.ST_Translate
-
- All Implemented Interfaces:
org.h2gis.api.Function,org.h2gis.api.ScalarFunction
public class ST_Translate extends org.h2gis.api.DeterministicScalarFunctionTranslates a geometry using X, Y (and possibly Z) offsets.- Author:
- Erwan Bocher, Adam Gouge
-
-
Field Summary
Fields Modifier and Type Field Description static StringMIXED_DIM_ERROR
-
Constructor Summary
Constructors Constructor Description ST_Translate()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetJavaStaticMethod()static org.locationtech.jts.geom.Geometrytranslate(org.locationtech.jts.geom.Geometry geom, double x, double y)Translates a geometry using X and Y offsets.static org.locationtech.jts.geom.Geometrytranslate(org.locationtech.jts.geom.Geometry geom, double x, double y, double z)Translates a geometry using X, Y and Z offsets.-
Methods inherited from class org.h2gis.api.AbstractFunction
addProperty, getProperty, removeProperty
-
-
-
-
Field Detail
-
MIXED_DIM_ERROR
public static final String MIXED_DIM_ERROR
- See Also:
- Constant Field Values
-
-
Method Detail
-
getJavaStaticMethod
public String getJavaStaticMethod()
-
translate
public static org.locationtech.jts.geom.Geometry translate(org.locationtech.jts.geom.Geometry geom, double x, double y)Translates a geometry using X and Y offsets.- Parameters:
geom- Geometryx- Xy- Y- Returns:
- Translated geometry
-
translate
public static org.locationtech.jts.geom.Geometry translate(org.locationtech.jts.geom.Geometry geom, double x, double y, double z)Translates a geometry using X, Y and Z offsets.- Parameters:
geom- Geometryx- Xy- Yz- Z- Returns:
- Translated geometry
-
-