Package org.h2.util.geometry
Class EWKTUtils
- java.lang.Object
-
- org.h2.util.geometry.EWKTUtils
-
public final class EWKTUtils extends java.lang.ObjectEWKT format support for GEOMETRY data type.This class provides limited support of EWKT. EWKT is based on Well-known Text Representation (WKT) from OGC 06-103r4 and includes additional PostGIS extensions. SRID support from EWKT is implemented.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classEWKTUtils.EWKTTargetConverter output target that writes a EWKT.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Stringewkb2ewkt(byte[] ewkb)Converts EWKB to EWKT.static java.lang.Stringewkb2ewkt(byte[] ewkb, int dimensionSystem)Converts EWKB to EWKT.static byte[]ewkt2ewkb(java.lang.String ewkt)Converts EWKT to EWKB.static byte[]ewkt2ewkb(java.lang.String ewkt, int dimensionSystem)Converts EWKT to EWKB.static java.lang.StringBuilderformatGeometryTypeAndDimensionSystem(java.lang.StringBuilder builder, int type)Formats type and dimension system as a string.static intgetDimensionSystem(java.lang.String ewkt)Reads the dimension system from EWKT.static intparseDimensionSystem(java.lang.String s)Parses a dimension system from the given string.static voidparseEWKT(java.lang.String ewkt, GeometryUtils.Target target)Parses a EWKT.static intparseGeometryType(java.lang.String s)Parses geometry type and dimension system from the given string.
-
-
-
Method Detail
-
ewkb2ewkt
public static java.lang.String ewkb2ewkt(byte[] ewkb)
Converts EWKB to EWKT.- Parameters:
ewkb- source EWKB- Returns:
- EWKT representation
-
ewkb2ewkt
public static java.lang.String ewkb2ewkt(byte[] ewkb, int dimensionSystem)Converts EWKB to EWKT.- Parameters:
ewkb- source EWKBdimensionSystem- dimension system- Returns:
- EWKT representation
-
ewkt2ewkb
public static byte[] ewkt2ewkb(java.lang.String ewkt)
Converts EWKT to EWKB.- Parameters:
ewkt- source EWKT- Returns:
- EWKB representation
-
ewkt2ewkb
public static byte[] ewkt2ewkb(java.lang.String ewkt, int dimensionSystem)Converts EWKT to EWKB.- Parameters:
ewkt- source EWKTdimensionSystem- dimension system- Returns:
- EWKB representation
-
parseEWKT
public static void parseEWKT(java.lang.String ewkt, GeometryUtils.Target target)Parses a EWKT.- Parameters:
ewkt- source EWKTtarget- output target
-
parseGeometryType
public static int parseGeometryType(java.lang.String s)
Parses geometry type and dimension system from the given string.- Parameters:
s- string to parse- Returns:
- geometry type and dimension system in OGC geometry code format (type + dimensionSystem * 1000)
- Throws:
java.lang.IllegalArgumentException- if input is not valid
-
parseDimensionSystem
public static int parseDimensionSystem(java.lang.String s)
Parses a dimension system from the given string.- Parameters:
s- string to parse- Returns:
- dimension system, one of XYZ, XYM, or XYZM
- Throws:
java.lang.IllegalArgumentException- if input is not valid- See Also:
GeometryUtils.DIMENSION_SYSTEM_XYZ,GeometryUtils.DIMENSION_SYSTEM_XYM,GeometryUtils.DIMENSION_SYSTEM_XYZM
-
formatGeometryTypeAndDimensionSystem
public static java.lang.StringBuilder formatGeometryTypeAndDimensionSystem(java.lang.StringBuilder builder, int type)Formats type and dimension system as a string.- Parameters:
builder- string buildertype- OGC geometry code format (type + dimensionSystem * 1000)- Returns:
- the specified string builder
- Throws:
java.lang.IllegalArgumentException- if type is not valid
-
getDimensionSystem
public static int getDimensionSystem(java.lang.String ewkt)
Reads the dimension system from EWKT.- Parameters:
ewkt- EWKT source- Returns:
- the dimension system
-
-