Click or drag to resize
GreatCircleMaths.Destination Method
Given a start coordinate, bearing and distance this calculates the final coordinate.

Namespace: VirtualRadar.Interface
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void Destination(
	Nullable<double> startLatitude,
	Nullable<double> startLongitude,
	Nullable<double> bearing,
	Nullable<double> kilometres,
	out Nullable<double> endLatitude,
	out Nullable<double> endLongitude
)

Parameters

startLatitude
Type: System.Nullable<Double>
startLongitude
Type: System.Nullable<Double>
bearing
Type: System.Nullable<Double>
kilometres
Type: System.Nullable<Double>
endLatitude
Type: System.Nullable<Double>
endLongitude
Type: System.Nullable<Double>
See Also