Click or drag to resize
IPolarPlotterAddCheckedCoordinate Method
Adds a coordinate to all applicable slices. The coordinate is guaranteed to have been considered ProbablyRight by an instance of IAircraftSanityChecker.

Namespace: VirtualRadar.Interface.Listener
Assembly: 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
)

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