Calculate the distance between 2 points on Earth.
Project description
Calculate the distance (in km or in miles) between two points on Earth, located by their latitude and longitude.
Example: distance between 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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
haversine-0.5.0.tar.gz
(1.6 kB
view hashes)