org.geolatte.geom.codec.PostgisWkbV2Encoder 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;
/**
* A Postgis WKB Encoder that encodes empty points as points with NaN coordinates.
*
* The convention to encode empty points as points with NaN coordinates was
* introduced in Postgis v2.2.2
*/
public class PostgisWkbV2Encoder extends PostgisWkbEncoder {
public PostgisWkbV2Encoder() {
super(PostgisWkbV2Dialect.INSTANCE);
}
}