IPolarPlotterAddCheckedCoordinate Method |
Namespace: VirtualRadar.Interface.ListenerAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax void AddCheckedCoordinate(
int aircraftId,
int altitude,
double latitude,
double longitude
)
Sub AddCheckedCoordinate (
aircraftId As Integer,
altitude As Integer,
latitude As Double,
longitude As Double
)
void AddCheckedCoordinate(
int aircraftId,
int altitude,
double latitude,
double longitude
)
abstract AddCheckedCoordinate :
aircraftId : int *
altitude : int *
latitude : float *
longitude : float -> unit
Parameters
- aircraftId
- Type: SystemInt32
- altitude
- Type: SystemInt32
- latitude
- Type: SystemDouble
- longitude
- Type: SystemDouble
Remarks
Identical to
AddCoordinate(Int32, Int32, Double, Double) except that the coordinate is not checked to see whether it is
reasonable before it is used. If another sanity checker has already tested the coordinate then this method
is more efficient, it avoids double-checking.
See Also