AGIWorldTerrainProcessCoordinates 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: 25.1.421.0 (25.1.421.0)
Syntaxprotected override void ProcessCoordinates(
	ref double longitude,
	ref double latitude
)
Protected Overrides Sub ProcessCoordinates ( 
	ByRef longitude As Double,
	ByRef latitude As Double
)
protected:
virtual void ProcessCoordinates(
	double% longitude, 
	double% latitude
) override
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