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

org.geolatte.geom.crs.VerticalDatum 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.10
Show newest version
package org.geolatte.geom.crs;

/**
 * Created by Karel Maesen, Geovise BVBA on 29/11/14.
 */
public class VerticalDatum extends CrsIdentifiable {


    public static final VerticalDatum UNKNOWN_VERTICAL_DATUM = new VerticalDatum(CrsId.UNDEFINED, "Undefined " +
            "Vertical", 0);

    private final int datumType;

    /**
     * Constructs an instance.
     *
     * @param crsId
     * @param name
     */
    protected VerticalDatum(CrsId crsId, String name, int datumtype) {
        super(crsId, name);
        this.datumType = datumtype;
    }

    public int getDatumType() {
        return this.datumType;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy