Description
Creates a non-persistent East-North-Up (ENU) reference frame with the origin at the specified geodetic location.
Syntax
Parameters
Example
Creates a East-North-Up system at the specified geodetic location (using common tasks).
[C#] | Copy Code |
---|
object lat = 0, lon = 0;
double alt = 0;
facility.Position.QueryPlanetodetic(out lat, out lon, out alt);
IAgCrdnSystemAssembled systemAssembled = provider.Systems.CommonTasks.CreateEastNorthUpCartographic(lat, lon, alt);
|
|
Creates a East-North-Up system at the specified geodetic location (using common tasks).
[Visual Basic .NET] | Copy Code |
---|
Dim lat As Object = 0, lon As Object = 0 Dim alt As Double = 0 facility.Position.QueryPlanetodetic(lat, lon, alt) Dim systemAssembled As IAgCrdnSystemAssembled = provider.Systems.CommonTasks.CreateEastNorthUpCartographic(lat, lon, alt)
|
|
See Also