Click or drag to resize
IPolarPlotter.AddCheckedCoordinate 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: System.Int32
altitude
Type: System.Int32
latitude
Type: System.Double
longitude
Type: System.Double
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