object Haversine
- Alphabetic
- By Inheritance
- Haversine
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
val
EARTH_RADIUS: Double
Equatorial radius (WGS84) in meters
-
def
apply(startLon: Double, startLat: Double, endLon: Double, endLat: Double, R: Double): Double
Calculates distance, in R units
Calculates distance, in R units
- startLon
- a start lon
- startLat
- a start lan
- endLon
- an end lon
- endLat
- an end lat
- R
- Earth radius, can be in any unit, in fact this value defines a physical meaning of this function
-
def
apply(start: (Double, Double), end: (Double, Double), R: Double): Double
Calculates distance, in R units
Calculates distance, in R units
- start
- a start lon / lat point
- end
- an end lon / lat point
- R
- Earth radius, can be in any unit, in fact this value defines a physical meaning of this function
-
def
apply(startLon: Double, startLat: Double, endLon: Double, endLat: Double): Double
Calculates distance basing on EARTH_RADIUS.
Calculates distance basing on EARTH_RADIUS. The result is in meters.
- startLon
- a start lon
- startLat
- a start lan
- endLon
- an end lon
- endLat
- an end lat
-
def
apply(start: (Double, Double), end: (Double, Double)): Double
Calculates distance basing on EARTH_RADIUS.
Calculates distance basing on EARTH_RADIUS. The result is in meters.
- start
- a start lon / lat point
- end
- an end lon / lat point