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

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

Go to download

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.crs;

/**
 * A coordinate system axis for ellipsoidal height, defined as the distance of a point from the ellipsoid measured along
 * the perpendicular from the ellipsoid to this point, positive if upwards or outside of the ellipsoid
 *
 * Created by Karel Maesen, Geovise BVBA on 28/11/14.
 */
public class EllipsoidalHeightCSAXis extends StraightLineAxis {

    /**
     * Creates an instance.
     *
     * @param axisName                      the name for this axis
     * @param unit                          the unit of this axis
     */
    EllipsoidalHeightCSAXis(String axisName, LinearUnit unit) {
        super(axisName, CoordinateSystemAxisDirection.UP, unit);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy