Calculate the distance bewteen 2 points on Earth.
Project description
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
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.4.0.tar.gz
(2.4 kB
view details)
File details
Details for the file haversine-0.4.0.tar.gz.
File metadata
- Download URL: haversine-0.4.0.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf14a7c8c1c61562323efa985b59388fbbff904ad26e6a479d7861c3364a8505
|
|
| MD5 |
f36df31d32a128e3bd89afc88844ca61
|
|
| BLAKE2b-256 |
dafc3d6c7a2b7542d411671a9403bfc00091e02f143649316775c03ff2fa69a4
|