org.geotools.referencing.cs |
package org.geotools.referencing.cs
{@linkplain org.geotools.referencing.cs.AbstractCS Coordinate systems} implementation.
An explanation for this package is provided in the {@linkplain org.opengis.referencing.cs OpenGIS® javadoc}.
The remaining discussion on this page is specific to the Geotools implementation.
Geotools provides some convenience methods for fetching specific coordinate
values in standard units. For example the {@link org.geotools.referencing.cs.DefaultEllipsoidalCS}
class provides a {@link org.geotools.referencing.cs.DefaultEllipsoidalCS#getLongitude getLongitude}
method that returns the longitude value in a given set of coordinates. This convenience method free
the user from the task of finding which axis is for the longitude, and performing unit
conversion.
|
Java Source File Name | Type | Comment |
AbstractCS.java | Class | The set of coordinate system axes that spans a given coordinate space. |
AbstractCSTest.java | Class | Tests the
AbstractCS class. |
ComparableAxisWrapper.java | Class | Wraps a
for comparaison purpose.
The sorting order tries to favor a right-handed system. |
ComparableAxisWrapperTest.java | Class | Tests the
ComparableAxisWrapper class. |
DefaultAffineCS.java | Class | A two- or three-dimensional coordinate system with straight axes that are not necessarily
orthogonal. |
DefaultCartesianCS.java | Class | A 1-, 2-, or 3-dimensional coordinate system. |
DefaultCartesianCSTest.java | Class | Tests the
CartesianCS class. |
DefaultCompoundCS.java | Class | A coordinate system made of two or more independent coordinate systems. |
DefaultCoordinateSystemAxis.java | Class | Definition of a coordinate system axis. |
DefaultCoordinateSystemAxisTest.java | Class | Tests the
DefaultCoordinateSystemAxis class. |
DefaultCylindricalCS.java | Class | A three-dimensional coordinate system consisting of a
extended by a straight
coordinate axis perpendicular to the plane spanned by the polar coordinate system. |
DefaultEllipsoidalCS.java | Class | A two- or three-dimensional coordinate system in which position is specified by geodetic
latitude, geodetic longitude, and (in the three-dimensional case) ellipsoidal height. |
DefaultLinearCS.java | Class | A one-dimensional coordinate system that consists of the points that lie on the single axis
described. |
DefaultPolarCS.java | Class | A two-dimensional coordinate system in which position is specified by the distance from the
origin and the angle between the line from the origin to a point and a reference direction. |
DefaultSphericalCS.java | Class | A three-dimensional coordinate system with one distance measured from the origin and two angular
coordinates. |
DefaultTimeCS.java | Class | A one-dimensional coordinate system containing a single time axis, used to describe the
temporal position of a point in the specified time units from a specified time origin. |
DefaultUserDefinedCS.java | Class | A two- or three-dimensional coordinate system that consists of any combination of coordinate
axes not covered by any other Coordinate System type. |
DefaultVerticalCS.java | Class | A one-dimensional coordinate system used to record the heights (or depths) of points. |
DirectionAlongMeridian.java | Class | Parses
of the kind
"South along 90 deg East". |
DirectionAlongMeridianTest.java | Class | Tests the
DirectionAlongMeridian class. |
PredefinedCS.java | Class | Converts an arbitrary CS into one of the predefined constants provided in the
org.geotools.referencing.cs package. |