GreatCircleMathsDestination Method |
Given a start coordinate, bearing and distance this calculates the final coordinate.
Namespace: VirtualRadar.InterfaceAssembly: 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
)
Public Shared Sub Destination (
startLatitude As Nullable(Of Double),
startLongitude As Nullable(Of Double),
bearing As Nullable(Of Double),
kilometres As Nullable(Of Double),
<OutAttribute> ByRef endLatitude As Nullable(Of Double),
<OutAttribute> ByRef endLongitude As Nullable(Of Double)
)
public:
static void Destination(
Nullable<double> startLatitude,
Nullable<double> startLongitude,
Nullable<double> bearing,
Nullable<double> kilometres,
[OutAttribute] Nullable<double>% endLatitude,
[OutAttribute] Nullable<double>% endLongitude
)
static member Destination :
startLatitude : Nullable<float> *
startLongitude : Nullable<float> *
bearing : Nullable<float> *
kilometres : Nullable<float> *
endLatitude : Nullable<float> byref *
endLongitude : Nullable<float> byref -> unit
Parameters
- startLatitude
- Type: SystemNullableDouble
- startLongitude
- Type: SystemNullableDouble
- bearing
- Type: SystemNullableDouble
- kilometres
- Type: SystemNullableDouble
- endLatitude
- Type: SystemNullableDouble
- endLongitude
- Type: SystemNullableDouble
See Also