| org.jscience.geography.coordinates.LatLong
LatLong | final public class LatLong extends Coordinates> (Code) | | This class represents the
GeographicCRS geographic latitude/longitude
coordinates onto the WGS84 ellipsoid.
author: Jean-Marie Dautelle version: 3.0, February 13, 2006 |
getDimension | public int getDimension()(Code) | | |
latitudeValue | final public double latitudeValue(Unit<Angle> unit)(Code) | | Returns the latitude value as double
Parameters: unit - the angle unit of the latitude to return. the latitude stated in the specified unit. |
longitudeValue | final public double longitudeValue(Unit<Angle> unit)(Code) | | Returns the longitude value as double
Parameters: unit - the angle unit of the longitude to return. the longitude stated in the specified unit. |
valueOf | public static LatLong valueOf(double latitude, double longitude, Unit<Angle> unit)(Code) | | Returns the surface position corresponding to the specified coordinates.
Parameters: latitude - the latitude value stated in the specified unit. Parameters: longitude - the longitude value stated in the specified unit. Parameters: unit - the angle unit in which the coordinates are stated(javax.measure.unit.NonSI.DEGREE_ANGLE Degree typically). the corresponding surface position. |
|
|