EllipsoidCartographicToUniversalTransverseMercator Method (Double, Double) |
Converts the location given in terms of planetodetic longitude and latitude to Universal Transverse Mercator (UTM) coordinates.
Namespace:
AGI.Foundation.Geometry.Shapes
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public UniversalTransverseMercator CartographicToUniversalTransverseMercator(
double longitude,
double latitude
)
Public Function CartographicToUniversalTransverseMercator (
longitude As Double,
latitude As Double
) As UniversalTransverseMercator
public:
UniversalTransverseMercator CartographicToUniversalTransverseMercator(
double longitude,
double latitude
)
member CartographicToUniversalTransverseMercator :
longitude : float *
latitude : float -> UniversalTransverseMercator
Parameters
- longitude
- Type: SystemDouble
The planetodetic longitude in radians. - latitude
- Type: SystemDouble
The planetodetic latitude in radians.
Return Value
Type:
UniversalTransverseMercatorThe UTM equivalent of the specified planetodetic coordinates.
Remarks
The planetodetic coordinates must be in a fixed reference frame
centered on the center of mass of this ellipsoid.
See Also