CMD + K

haversine

Community

Calculate the distance bewteen 2 points on Earth.

Installation

To install this package, run one of the following:

Conda
$conda install riipl-org::haversine

Usage Tracking

0.4.5
1 / 8 versions selected
Downloads (Last 6 months): 0

Description

Haversine

Calculate the distance (in km or in miles) bewteen two points on Earth, located by their latitude and longitude.

Example: distance bewteen Lyon and Paris

from haversine import haversine lyon = (45.7597, 4.8422) paris = (48.8567, 2.3508) haversine(lyon, paris) 392.00124794121825 # in kilometers haversine(lyon, paris, miles=True) 243.589575470673 # in miles

About

Summary

Calculate the distance bewteen 2 points on Earth.

Last Updated

Mar 28, 2018 at 20:15

License

MIT License

Supported Platforms

linux-64