About Anaconda Help Download Anaconda

riipl-org / packages / haversine 0.4.5

Calculate the distance bewteen 2 points on Earth.

Installers

  • linux-64 v0.4.5

conda install

To install this package run one of the following:
conda install riipl-org::haversine

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


© 2024 Anaconda, Inc. All Rights Reserved. (v4.0.2) Legal | Privacy Policy