Methods In the IGlobeViewUtil Interface
// Geographic coordinates to geographical coordinates
PublicVoidGeocentricToGeographic (
Double X,
Double Y,
Double Z,
RefDouble PLong_dd,
RefDouble PLat_dd,
RefDouble PElev_meters
);
// Coordinates of the earth center to the screen
PublicVoidGeocentricToWindow (
Double X,
Double Y,
Double Z,
RefInt PWinX,
RefInt PWinY
);
// Geographic coordinates to geographic coordinates
PublicVoidGeographicToGeocentric (
Double Long_dd,
Double Lat_dd,
Double Elev_meters,
RefDouble PX,
RefDouble PY,
RefDouble PZ
);
// Geographic coordinates to screen coordinates
PublicVoidGeographicToWindow (
Double Long_dd,
Double Lat_dd,
Double Elev_meters,
RefInt PWinX,
RefInt PWinY
);
// Coordinates of the screen to the Earth Center
PublicVoidWindowToGeocentric (
IGlobeDisplay PDisplay,
ISceneViewer PViewer,
Int WinX,
Int WinY,
Bool BUseZBufferValue,
RefDouble PX,
RefDouble PY,
RefDouble PZ
);
// Screen coordinates to geographical coordinates
PublicVoidWindowToGeographic (
IGlobeDisplay PDisplay,
ISceneViewer PViewer,
Int WinX,
Int WinY,
Bool BUseZBufferValue,
RefDouble PLon,
RefDouble PLat,
RefDouble PAlt
);