QuantizedMeshTerrainProviderGetLocalMinimumSampleSpacing Method |
Gets the smallest distance between the successive height samples of the terrain data, in radians, at the specified coordinates.
If the return value is 0.0, then the minimum sample spacing is unknown.
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public override double GetLocalMinimumSampleSpacing(
double longitude,
double latitude
)
Public Overrides Function GetLocalMinimumSampleSpacing (
longitude As Double,
latitude As Double
) As Double
public:
virtual double GetLocalMinimumSampleSpacing(
double longitude,
double latitude
) override
abstract GetLocalMinimumSampleSpacing :
longitude : float *
latitude : float -> float
override GetLocalMinimumSampleSpacing :
longitude : float *
latitude : float -> float
Parameters
- longitude
- Type: SystemDouble
The longitude, in radians. - latitude
- Type: SystemDouble
The latitude, in radians.
Return Value
Type:
DoubleThe smallest distance between the successive height samples of the terrain data, in radians.
See Also