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

org.geolatte.geom.crs.Extension Maven / Gradle / Ivy

Go to download

This geoLatte-geom library offers a geometry model that conforms to the OGC Simple Features for SQL specification.

There is a newer version: 1.9.1
Show newest version
package org.geolatte.geom.crs;

/**
 * Created by Karel Maesen, Geovise BVBA on 23/04/16.
 */
public class Extension {

    private final String name;
    private final String value;

    public Extension(String name, String value) {
        this.name = name;
        this.value = value;
    }

    public String getName() {
        return name;
    }

    public String getValue() {
        return value;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy