This document is archived and information here might be outdated.  Recommended version.


IGlobeViewUtil.GeocentricToGeographic Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GlobeCore > ESRI.ArcGIS.GlobeCore > Interfaces > IG > IGlobeViewUtil Interface > IGlobeViewUtil.GeocentricToGeographic Method
ArcGIS Developer Help

IGlobeViewUtil.GeocentricToGeographic Method

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*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also

IGlobeViewUtil Interface