| Package | Description |
|---|---|
| org.jscience.geography.coordinates |
Provides linear or angular
quantities which
designate the position that a point occupies in a given reference frame or system. |
| Modifier and Type | Field and Description |
|---|---|
static GeographicCRS<LatLong> |
LatLong.CRS
Holds the coordinate reference system for all instances of this class.
|
| Modifier and Type | Method and Description |
|---|---|
LatLong |
LatLong.copy() |
static LatLong |
UTM.upsToLatLong(UTM ups,
ReferenceEllipsoid ellipsoid)
Converts the UPS coordinates to latitude/longitude coordinates,
based on the specified reference ellipsoid.
|
static LatLong |
UTM.utmToLatLong(UTM utm,
ReferenceEllipsoid ellipsoid)
Converts the UTM coordinates to latitude/longitude coordinates,
based on the specified reference ellipsoid.
|
static LatLong |
LatLong.valueOf(double latitude,
double longitude,
Unit<Angle> unit)
Returns the surface position corresponding to the specified coordinates.
|
| Modifier and Type | Method and Description |
|---|---|
GeographicCRS<LatLong> |
LatLong.getCoordinateReferenceSystem() |
| Modifier and Type | Method and Description |
|---|---|
static char |
UTM.getLatitudeZone(LatLong latLong)
Returns the UTM/UPS latitude zone identifier for the specified coordinates.
|
static int |
UTM.getLongitudeZone(LatLong latLong)
Returns the UTM/UPS longitude zone number for the specified
coordinates.
|
static boolean |
UTM.isNorthPolar(LatLong latLong)
Returns true if the position indicated by the coordinates is
north of the northern limit of the UTM grid (84 degrees).
|
static boolean |
UTM.isSouthPolar(LatLong latLong)
Returns true if the position indicated by the coordinates is
south of the southern limit of the UTM grid (-80 degrees).
|
static UTM |
UTM.latLongToUps(LatLong latLong,
ReferenceEllipsoid ellipsoid)
Converts latitude/longitude coordinates to UPS coordinates based on
the specified reference ellipsoid.
|
static UTM |
UTM.latLongToUtm(LatLong latLong,
ReferenceEllipsoid ellipsoid)
Converts latitude/longitude coordinates to UTM coordinates based on
the specified reference ellipsoid.
|