Provides linear or angular {@link javax.measure.quantity quantities} which designate the position that a point occupies in a given reference frame or system.
Coordinates are unambigous only when the {@link org.jscience.geography.coordinates.crs coordinates reference system} to which those coordinates are related has been fully defined.
Applications may create new types of coordinates either by extending
{@link org.jscience.geography.coordinates.Coordinates Coordinates}
(in which case they must provide a coordinates reference system) or simply by
{@link org.jscience.geography.coordinates.CompoundCoordinates combining}
existing coordinates together. For example:[code]
// High-Precision Coordinates.
class Position3D extends Coordinates Conversion between coordinates is achieved through their coordinates
reference system. For example:[code]
// Converts UTM coordinates to Latitude/Longitude.
UTM utm = UTM.valueOf(17, 'E', 444.5, 556.44, METRE);
CoordinatesConverter