Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.29 KB

README.md

File metadata and controls

18 lines (12 loc) · 1.29 KB

haversine.dart Pub Travis status Coverage Status

Simple Haversine formula implementation to calculate geographic distance on earth having a pair of Latitude/Longitude points.

The haversine formula determines the great-circle distance between two points on a sphere given their longitudes and latitudes.

The formula in this library works on the basis of a spherical earth, which is accurate enough for most purposes.

Disclaimer: The earth is not quite a sphere. This means that errors from assuming spherical geometry might be considerable depending on the points, so: don't trust your life on this value.

Check this detailed information.