Returns the terrain profile at the specified resolution relative to the input reference surface. If a position along the profile is outside terrain sources, the altitude of 0.0 relative to the default reference ellipsoid (WGS84 for Earth) is used.
[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( System.Object SWLatitude, System.Object SWLongitude, System.Object NELatitude, System.Object NELongitude, System.Object StepSize, AgEDistanceOnSphere DistanceType, AgEAltRefType AltRef ); |
[Managed C++] |
---|
public: System::Array GetAltitudesBetweenPointsAtResolution( VARIANT SWLatitude, VARIANT SWLongitude, VARIANT NELatitude, VARIANT NELongitude, VARIANT StepSize, AgEDistanceOnSphere DistanceType, AgEAltRefType AltRef ); |
[Unmanaged C++] |
---|
public: HRESULT GetAltitudesBetweenPointsAtResolution( VARIANT SWLatitude, VARIANT SWLongitude, VARIANT NELatitude, VARIANT NELongitude, VARIANT StepSize, AgEDistanceOnSphere DistanceType, AgEAltRefType AltRef, SAFEARRAY * * ppRetVal ); |
[Java] |
---|
public AgSafeArray getAltitudesBetweenPointsAtResolution( AgVariant SWLatitude, AgVariant SWLongitude, AgVariant NELatitude, AgVariant NELongitude, AgVariant StepSize, AgEDistanceOnSphere DistanceType, AgEAltRefType AltRef ); |
[Python - STK API ] |
---|
def GetAltitudesBetweenPointsAtResolution(self, SWLatitude:typing.Any, SWLongitude:typing.Any, NELatitude:typing.Any, NELongitude:typing.Any, StepSize:typing.Any, DistanceType:"AgEDistanceOnSphere", AltRef:"AgEAltRefType") -> list: |
- SWLatitude
- SWLongitude
- NELatitude
- NELongitude
- StepSize
- DistanceType
- AltRef
Gets the altitude profile of the terrain.
[C#] | ||
---|---|---|
|
Gets the altitude profile of the terrain.
[Visual Basic .NET] | ||
---|---|---|
|