Returns the terrain altitude profile at the
specified resolution.
[Visual Basic .NET] |
---|
Public Function GetAltitudesBetweenPointsAtResolution( _
ByVal SWLatitude As System.Object, _
ByVal SWLongitude As System.Object, _
ByVal NELatitude As System.Object, _
ByVal NELongitude As System.Object, _
ByVal StepSize As System.Object, _
ByVal DistanceType As AgEDistanceOnSphere, _
ByVal AltRef As AgEAltRefType _
) As System.Array
|
[C#] |
---|
public System.Array GetAltitudesBetweenPointsAtResolution(
|
[Managed C++] |
---|
public: System::Array GetAltitudesBetweenPointsAtResolution(
|
[Java] |
---|
public Object[] getAltitudesBetweenPointsAtResolution(
|
[Unmanaged C++] |
---|
public: HRESULT GetAltitudesBetweenPointsAtResolution(
|
- SWLatitude
- SWLongitude
- NELatitude
- NELongitude
- StepSize
- DistanceType
-
Member Value Description eDistanceOnSphereGreatCircle 0 Shortest distance between two points on the globe. eDistanceOnSphereRhumbLine 1 Lines of constant bearing. - AltRef
-
Member Value Description eMSL 0 Reference the altitude to Mean Sea Level. eTerrain 1 Reference the altitude to terrain. eWGS84 2 WGS84: reference the altitude to the central body's reference ellipsoid. eEllipsoid 3 Ellipsoid: reference the altitude to the central body's reference ellipsoid(non-Earth).
Gets the altitude
profile of the terrain.
[C#] | Copy Code | |
---|---|---|
|
Gets the altitude
profile of the terrain.
[Visual Basic .NET] | Copy Code | |
---|---|---|
|