TerrainInterpolatorTDataInterpolateHeight Method |
Interpolates the height at a particular longitude and latitude from given terrain data.
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract double InterpolateHeight(
TData data,
double longitude,
double latitude
)
Public MustOverride Function InterpolateHeight (
data As TData,
longitude As Double,
latitude As Double
) As Double
public:
virtual double InterpolateHeight(
TData data,
double longitude,
double latitude
) abstract
abstract InterpolateHeight :
data : 'TData *
longitude : float *
latitude : float -> float
Parameters
- data
- Type: TData
The terrain data. - longitude
- Type: SystemDouble
The longitude, in the native units of the terrain provider. - latitude
- Type: SystemDouble
The latitude, in the native units of the terrain provider.
Return Value
Type:
DoubleThe interpolated height, in the native units of the terrain provider.
Exceptions See Also