GIS::Distance::Formula::Cosine - Cosine distance calculations.


GIS-Distance documentation  | view source Contained in the GIS-Distance distribution.

Index


NAME

Top

GIS::Distance::Formula::Cosine - Cosine distance calculations.

DESCRIPTION

Top

Although this formula is mathematically exact, it is unreliable for small distances because the inverse cosine is ill-conditioned.

Normally this module is not used directly. Instead GIS::Distance is used which in turn interfaces with the various formula classes.

FORMULA

Top

  a = sin(lat1) * sin(lat2)
  b = cos(lat1) * cos(lat2) * cos(lon2 - lon1)
  c = arccos(a + b)
  d = R * c

METHODS

Top

distance

This method is called by GIS::Distance's distance() method.

SEE ALSO

Top

GIS::Distanc

GIS::Distance::Formula::Cosine::Fast

AUTHOR

Top

Aran Clary Deltac <bluefeet@cpan.org>

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


GIS-Distance documentation  | view source Contained in the GIS-Distance distribution.