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

org.geolatte.geom.crs.Geographic3DCoordinateReferenceSystem 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;

import org.geolatte.geom.G3D;

import java.util.Arrays;
import java.util.List;

/**
 * Created by Karel Maesen, Geovise BVBA on 30/11/14.
 */
public class Geographic3DCoordinateReferenceSystem extends GeographicCoordinateReferenceSystem {



    /**
     * Constructs a 3-Dimensional geographic coordinate reference system.
     *
     * @param crsId            the {@link org.geolatte.geom.crs.CrsId} that identifies this
     *                         CoordinateReferenceSystem uniquely
     * @param name             the commonly used name for this CoordinateReferenceSystem
     * @param coordinateSystem the coordinate system to use  @throws java.lang.IllegalArgumentException if less than
     *                         two {@link org.geolatte.geom.crs.CoordinateSystemAxis CoordinateSystemAxes} are passed.
     */
    public Geographic3DCoordinateReferenceSystem(CrsId crsId, String name, EllipsoidalCoordinateSystem3D coordinateSystem) {
        super(crsId, name, coordinateSystem);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy