| Package | Description | 
|---|---|
| agi.foundation.coordinates | 
 Contains types for quantifying and converting between various coordinate representations. 
 | 
| agi.foundation.geometry.shapes | 
 Contains types for representing geometric shapes such as curves, surfaces, and solids. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static PoleIndicator | 
PoleIndicator.getDefault()
Get the enum constant that is considered to be the default. 
 | 
static PoleIndicator | 
PoleIndicator.getFromValue(int value)
Get the enum constant that is associated with the given numeric value. 
 | 
PoleIndicator | 
UniversalTransverseMercator.getHemisphere()
Gets the hemisphere of the coordinates. 
 | 
PoleIndicator | 
UniversalPolarStereographic.getHemisphere()
Gets the hemisphere of the coordinates. 
 | 
static PoleIndicator | 
PoleIndicator.valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static PoleIndicator[] | 
PoleIndicator.values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
| Constructor and Description | 
|---|
UniversalPolarStereographic(PoleIndicator hemisphere,
                           double easting,
                           double northing)
Initializes a set of  
UniversalPolarStereographic coordinates from the provided values. | 
UniversalTransverseMercator(int zone,
                           PoleIndicator hemisphere,
                           double easting,
                           double northing)
Initializes a set of  
UniversalTransverseMercator coordinates from the provided values. | 
| Modifier and Type | Method and Description | 
|---|---|
Cartographic | 
Ellipsoid.universalPolarStereographicToCartographic(PoleIndicator hemisphere,
                                         double easting,
                                         double northing)
Converts the location given in terms of Universal Polar Stereographic (UPS) hemisphere, easting, and northing
    to planetodetic cartographic coordinates. 
 | 
Cartographic | 
Ellipsoid.universalTransverseMercatorToCartographic(int zone,
                                         PoleIndicator hemisphere,
                                         double easting,
                                         double northing)
Converts the location given in terms of Universal Transverse Mercator (UTM) zone, hemisphere, easting, and northing
    to planetodetic cartographic coordinates. 
 |