org.geolatte.geom.codec.Sfa110WktDialect 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 WKT decoder for the format specified in Simple Feature Access, version 1.1.0
*/
class Sfa110WktDialect extends WktDialect {
public static final Sfa110WktDialect INSTANCE = new Sfa110WktDialect();
@Override
boolean writeMultiPointAsListOfPositions() {
return true;
}
@Override
boolean isLimitedTo2D() {
return true;
}
}