org.geolatte.geom.codec.Db2WktEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geolatte-geom Show documentation
Show all versions of geolatte-geom Show documentation
This geoLatte-geom library offers a geometry model that conforms to the OGC Simple Features for SQL
specification.
The newest version!
package org.geolatte.geom.codec;
/**
* An EWKT encoder for DB2 as used in Hibernate Spatial
*
*
* Note: this Encoder is to be used in combination with the DB2 EWKT transform group created by David Adler. See the
* Hibernate documentation for the DB2 Dialect.
*
* Created by Karel Maesen, Geovise BVBA on 05/06/17.
*/
public class Db2WktEncoder extends HANAWktEncoder {
//DB2 and HANA use the same (E)WKT format, so we just inherit.
//Later we can substitute a different implementation should the need arise.
}