All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geolatte.geom.codec.Sfa110WktDialect Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy