RasterTerrainProviderProcessCoordinates Method |
Performs any additional processing of coordinate values prior to using them to load sets of posts
or for interpolating heights. This method is only called if
NeedsSpecialCoordinateProcessing
is
.
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax protected virtual void ProcessCoordinates(
ref double longitude,
ref double latitude
)
Protected Overridable Sub ProcessCoordinates (
ByRef longitude As Double,
ByRef latitude As Double
)
protected:
virtual void ProcessCoordinates(
double% longitude,
double% latitude
)
abstract ProcessCoordinates :
longitude : float byref *
latitude : float byref -> unit
override ProcessCoordinates :
longitude : float byref *
latitude : float byref -> unit
Parameters
- 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.
See Also