mirror of
https://github.com/wagesj45/CapyKit.git
synced 2024-11-12 19:23:36 -06:00
2.3 KiB
2.3 KiB
GetDistance(Double, Double, Double, Double, MeasurementSystem) Method
Gets the distance between two points on earth using the haversine
formula.
Definition
Namespace: CapyKit.Helpers
Assembly: CapyKit (in CapyKit.dll) Version: 1.0.2
C#
public static double GetDistance(
double latitudeOrigin,
double longitudeOrigin,
double latitudeDestination,
double longitudeDestination,
MeasurementSystem measurementSystem = MeasurementSystem.Imperial
)
F#
static member GetDistance :
latitudeOrigin : float *
longitudeOrigin : float *
latitudeDestination : float *
longitudeDestination : float *
?measurementSystem : MeasurementSystem
(* Defaults:
let _measurementSystem = defaultArg measurementSystem MeasurementSystem.Imperial
*)
-> float
Parameters
- Double
- The latitude of the origin.
- Double
- The longitude of the origin.
- Double
- The latitude destination.
- Double
- The longitude destination.
- MeasurementSystem (Optional)
- (Optional) The measurement system.
Return Value
Double
The distance.
Remarks
haversine formula to calculate the "as-the-crow-flies" distance between two points on earth.
See Also
Reference
CalculationHelper Class
GetDistance Overload
CapyKit.Helpers Namespace