Class ST_MakePoint
- java.lang.Object
-
- org.h2gis.api.AbstractFunction
-
- org.h2gis.api.DeterministicScalarFunction
-
- org.h2gis.functions.spatial.create.ST_MakePoint
-
- All Implemented Interfaces:
org.h2gis.api.Function,org.h2gis.api.ScalarFunction
- Direct Known Subclasses:
ST_Point
public class ST_MakePoint extends org.h2gis.api.DeterministicScalarFunctionST_MakePoint constructs POINT from two or three doubles.- Author:
- Adam Gouge
-
-
Constructor Summary
Constructors Constructor Description ST_MakePoint()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static org.locationtech.jts.geom.PointcreatePoint(double x, double y)Constructs POINT from two doubles.static org.locationtech.jts.geom.PointcreatePoint(double x, double y, double z)Constructs POINT from three doubles.StringgetJavaStaticMethod()-
Methods inherited from class org.h2gis.api.AbstractFunction
addProperty, getProperty, removeProperty
-
-
-
-
Method Detail
-
getJavaStaticMethod
public String getJavaStaticMethod()
-
createPoint
public static org.locationtech.jts.geom.Point createPoint(double x, double y) throws SQLExceptionConstructs POINT from two doubles.- Parameters:
x- X-coordinatey- Y-coordinate- Returns:
- The POINT constructed from the given coordinatesk
- Throws:
SQLException
-
createPoint
public static org.locationtech.jts.geom.Point createPoint(double x, double y, double z) throws SQLExceptionConstructs POINT from three doubles.- Parameters:
x- X-coordinatey- Y-coordinatez- Z-coordinate- Returns:
- The POINT constructed from the given coordinates
- Throws:
SQLException
-
-