o

geotrellis.util

Haversine

object Haversine

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Haversine
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. val EARTH_RADIUS: Double

    Equatorial radius (WGS84) in meters

  2. 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

  3. 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

  4. 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

  5. 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