Calculate the distance between 2 points on Earth.
Project description
# Haversine [![Build Status](https://travis-ci.org/mapado/haversine.svg?branch=master)](https://travis-ci.org/mapado/haversine)
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
```python
from haversine import haversine
lyon = (45.7597, 4.8422) # (lat, lon)
paris = (48.8567, 2.3508)
haversine(lyon, paris)
# 392.21671780659625 # in kilometers
haversine(lyon, paris, miles=True)
# 243.71209416020253 # in miles
haversine(lyon, paris, nautical_miles=True)
# 211.7801622966963 # in nautical miles
```
## Installation
```bash
$ pip install haversine
```
## Contributing
Clone the project
Install [pipenv](https://github.com/pypa/pipenv).
Run `pipenv install`
Launch test with `pipenv run pytest`
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
```python
from haversine import haversine
lyon = (45.7597, 4.8422) # (lat, lon)
paris = (48.8567, 2.3508)
haversine(lyon, paris)
# 392.21671780659625 # in kilometers
haversine(lyon, paris, miles=True)
# 243.71209416020253 # in miles
haversine(lyon, paris, nautical_miles=True)
# 211.7801622966963 # in nautical miles
```
## Installation
```bash
$ pip install haversine
```
## Contributing
Clone the project
Install [pipenv](https://github.com/pypa/pipenv).
Run `pipenv install`
Launch test with `pipenv run pytest`
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-1.0.0.tar.gz
(2.1 kB
view details)
File details
Details for the file haversine-1.0.0.tar.gz
.
File metadata
- Download URL: haversine-1.0.0.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5af366bea6755ad42ba9495be58f24f55f32fa4ba6f2d0a2642211958e829603 |
|
MD5 | 184ce404c5393bb252b1b76c254af832 |
|
BLAKE2b-256 | 5edbf550b7c4f7683e7c5687b459b2db8c589a4b96f7e8d360f197d381b84727 |