Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shpaker/pygreatcircledistance
Calculate the distance between GPS coordinates in meters
https://github.com/shpaker/pygreatcircledistance
great-circle
Last synced: about 1 month ago
JSON representation
Calculate the distance between GPS coordinates in meters
- Host: GitHub
- URL: https://github.com/shpaker/pygreatcircledistance
- Owner: shpaker
- Created: 2019-08-10T17:00:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T21:51:53.000Z (about 2 years ago)
- Last Synced: 2024-10-15T21:12:49.324Z (2 months ago)
- Topics: great-circle
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
pyGreatCircleDistance
=====================Calculate the distance between two GPS coordinates in meters
[![PyPI](https://img.shields.io/pypi/v/pyGreatCircleDistance.svg)](https://pypi.python.org/pypi/pyGreatCircleDistance)
[![PyPI](https://img.shields.io/pypi/dm/pyGreatCircleDistance.svg)](https://pypi.python.org/pypi/pyGreatCircleDistance)
[![PyPI](https://img.shields.io/badge/code%20style-black-000000.svg)](href="https://github.com/psf/black)Installation
------------```
pip install pyGreatCircleDistance -U
```Example
-------```python
from pygreatcircledistance import vincenty_formuladist = vincenty_formula((77.1539, -120.398), (77.1804, 129.55))
print(dist) # 2332668.5392066096 meters
```