org.geolatte.geom.crs.Geographic3DCoordinateReferenceSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geolatte-geom Show documentation
Show all versions of geolatte-geom Show documentation
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);
}
}