All Projects → maurycyp → vincenty

maurycyp / vincenty

Licence: Unlicense license
Calculate the geographical distance between 2 points with extreme accuracy.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to vincenty

Compass
Compass is a GPS tracking server that stores data in flat files.
Stars: ✭ 105 (+98.11%)
Mutual labels:  gps
orange3-geo
🍊 🌍 Orange add-on for dealing with geography and geo-location
Stars: ✭ 22 (-58.49%)
Mutual labels:  gps
Qwiic Ublox Gps Py
No description or website provided.
Stars: ✭ 38 (-28.3%)
Mutual labels:  gps
GPSService
Demonstrates how to use a service to regularly update a activity with data via callback. Also allows the activity to call functions on the service.
Stars: ✭ 16 (-69.81%)
Mutual labels:  gps
X-TRACK
A GPS bicycle speedometer that supports offline maps and track recording
Stars: ✭ 3,736 (+6949.06%)
Mutual labels:  gps
nrf9160
LTE 4G link on nRF9160-DK (ARM Cortex-M33)
Stars: ✭ 20 (-62.26%)
Mutual labels:  gps
ublox
Arduino and CMake library for communicating with uBlox GPS receivers.
Stars: ✭ 89 (+67.92%)
Mutual labels:  gps
gnssIR python
Python scripts for GNSS interferometric reflection applications
Stars: ✭ 19 (-64.15%)
Mutual labels:  gps
Low power TTGO T-beam
Low power consumption for TTGO t-beam
Stars: ✭ 45 (-15.09%)
Mutual labels:  gps
roam-reactnative
React Native Location SDK. High accuracy and battery efficient location SDK for iOS and Android by Roam.ai
Stars: ✭ 20 (-62.26%)
Mutual labels:  gps
surger
⚡ Is there surge pricing around me right now?
Stars: ✭ 20 (-62.26%)
Mutual labels:  gps
HPR-Rocket-Flight-Computer
A flight computer for high-powered rockets based on the Teensy platform. 4 programmable pyro outputs, Mach immune flight events, air-start & two-stage capable w/ tilt-sensing safety features, GPS & live telemetry. High-rate data logging at 1000 samples per second. 4.0in x 1.25in x 0.5in fits in a 38mm tube coupler.
Stars: ✭ 33 (-37.74%)
Mutual labels:  gps
rikitraki
This repository contains the client code of RikiTraki.com, a map-centric hiking log web application.
Stars: ✭ 16 (-69.81%)
Mutual labels:  gps
geodist
Golang package to compute the distance between two geographic latitude, longitude coordinates
Stars: ✭ 133 (+150.94%)
Mutual labels:  vincenty
AndroidGNSS
Code supporting raw ranges for the Android
Stars: ✭ 40 (-24.53%)
Mutual labels:  gps
RouteConverter
The popular GPS conversion and editing tool
Stars: ✭ 123 (+132.08%)
Mutual labels:  gps
aic-mobile-ios
Art Institute of Chicago Official Mobile App
Stars: ✭ 29 (-45.28%)
Mutual labels:  gps
GPSMachineLearning
No description or website provided.
Stars: ✭ 122 (+130.19%)
Mutual labels:  gps
erkir
Երկիր (Erkir) - a C++ library for geodesic and trigonometric calculations
Stars: ✭ 26 (-50.94%)
Mutual labels:  distance-calculation
gpx-builder
Builder of GPX files
Stars: ✭ 25 (-52.83%)
Mutual labels:  gps

Vincenty

Calculate the geographical distance (in kilometers or miles) between 2 points with extreme accuracy.

This library implements Vincenty's solution to the inverse geodetic problem. It is based on the WGS 84 reference ellipsoid and is accurate to within 1 mm (!) or better.

This formula is widely used in geographic information systems (GIS) and is much more accurate than methods for computing the great-circle distance (which assume a spherical Earth).

Example: distance between Boston and New York City

>>> from vincenty import vincenty
>>> boston = (42.3541165, -71.0693514)
>>> newyork = (40.7791472, -73.9680804)
>>> vincenty(boston, newyork)
298.396057
>>> vincenty(boston, newyork, miles=True)
185.414657

Installation

$ pip install vincenty

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].