This document is archived and information here might be outdated. Recommended version. |
Transform normalized geocentric coordinates to geographic coordinates.
[Visual Basic .NET] Public Sub GeocentricToGeographic ( _ ByVal X As Double, _ ByVal Y As Double, _ ByVal Z As Double, _ ByRef pLong_dd As Double, _ ByRef pLat_dd As Double, _ ByRef pElev_meters As Double _ )
[C#] public void GeocentricToGeographic ( double X, double Y, double Z, ref double pLong_dd, ref double pLat_dd, ref double pElev_meters );
[C++]
HRESULT GeocentricToGeographic(
double X,
double Y,
double Z,
System.Double* pLong_dd,
System.Double* pLat_dd,
System.Double* pElev_meters
);
[C++]
Parameters X [in]
X is a parameter of type double Y [in]
Y is a parameter of type double Z [in]
Z is a parameter of type double pLong_dd [out]
pLong_dd is a parameter of type double* pLat_dd [out]
pLat_dd is a parameter of type double* pElev_meters [out]
pElev_meters is a parameter of type double*