This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > DataSourcesRaster > ESRI.ArcGIS.DataSourcesRaster > Interfaces > IP > IPushbroomUtilities Interface > IPushbroomUtilities.ConvertECEFtoLonLat Method (ArcObjects .NET 10.5 SDK) |
Convert ECEF coordinates to longitude, latitude, elevation
[Visual Basic .NET] Public Sub convertECEFtoLonLat ( _ ByVal x As Double, _ ByVal y As Double, _ ByVal z As Double, _ ByRef lon As Double, _ ByRef lat As Double, _ ByRef elev As Double _ )
[C#] public void convertECEFtoLonLat ( double x, double y, double z, ref double lon, ref double lat, ref double elev );
[C++]
HRESULT convertECEFtoLonLat(
double x,
double y,
double z,
double* lon,
double* lat,
double* elev
);
[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 lon [out] lon is a parameter of type double lat [out] lat is a parameter of type double elev [out] elev is a parameter of type double