EllipsoidUniversalTransverseMercatorToCartographic Method (Int32, PoleIndicator, Double, Double) | 
 
            Converts the location given in terms of Universal Transverse Mercator (UTM) zone, hemisphere, easting, and northing
            to planetodetic cartographic coordinates.
            
 
    Namespace: 
   AGI.Foundation.Geometry.Shapes
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic Cartographic UniversalTransverseMercatorToCartographic(
	int zone,
	PoleIndicator hemisphere,
	double easting,
	double northing
)
Public Function UniversalTransverseMercatorToCartographic ( 
	zone As Integer,
	hemisphere As PoleIndicator,
	easting As Double,
	northing As Double
) As Cartographic
public:
Cartographic UniversalTransverseMercatorToCartographic(
	int zone, 
	PoleIndicator hemisphere, 
	double easting, 
	double northing
)
member UniversalTransverseMercatorToCartographic : 
        zone : int * 
        hemisphere : PoleIndicator * 
        easting : float * 
        northing : float -> Cartographic 
Parameters
- zone
 - Type: SystemInt32
The longitude zone indicator. - hemisphere
 - Type: AGI.Foundation.CoordinatesPoleIndicator
The hemisphere indicator. - easting
 - Type: SystemDouble
The eastward distance of the location into the zone. - northing
 - Type: SystemDouble
The northward distance of the location into the zone. 
Return Value
Type: 
CartographicThe planetodetic cartographic equivalent of the specified UTM coordinates.
See Also