Class ST_GeomFromWKB
- java.lang.Object
-
- org.h2gis.api.AbstractFunction
-
- org.h2gis.api.DeterministicScalarFunction
-
- org.h2gis.functions.spatial.convert.ST_GeomFromWKB
-
- All Implemented Interfaces:
org.h2gis.api.Function,org.h2gis.api.ScalarFunction
public class ST_GeomFromWKB extends org.h2gis.api.DeterministicScalarFunctionConvert a WKB object to a geometry- Author:
- Erwan Bocher
-
-
Constructor Summary
Constructors Constructor Description ST_GeomFromWKB()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetJavaStaticMethod()static org.locationtech.jts.geom.GeometrytoGeometry(byte[] bytes)Convert a WKB representation to a geometry without specify a SRID.static org.locationtech.jts.geom.GeometrytoGeometry(byte[] bytes, int srid)Convert a WKB representation to a geometry-
Methods inherited from class org.h2gis.api.AbstractFunction
addProperty, getProperty, removeProperty
-
-
-
-
Method Detail
-
getJavaStaticMethod
public String getJavaStaticMethod()
-
toGeometry
public static org.locationtech.jts.geom.Geometry toGeometry(byte[] bytes, int srid) throws SQLExceptionConvert a WKB representation to a geometry- Parameters:
bytes- the input WKB objectsrid- the input SRID- Returns:
- Throws:
SQLException
-
toGeometry
public static org.locationtech.jts.geom.Geometry toGeometry(byte[] bytes) throws SQLExceptionConvert a WKB representation to a geometry without specify a SRID.- Parameters:
bytes-- Returns:
- Throws:
SQLException
-
-