Skip to main content

Vectorized geodesic calculations.

Project description

Overview

Unix Build Status Testing Coverage Status Scrutinizer Code Quality PyPI Version PyPI License

This library provides vectorized direct and inverse geodesic methods.

The motivation was to have the accurate and fast vectorized geodesic routines for sailboat routing project. There are few python libraries, with geographiclib being the most accurate and reliable. Haversine method, which is widely used as an example of fast inverse method can be vectorized rather easily, however the errors are expected to be at least 0.5%. There are no vectorized AND accurate options.

This library is based on numpy and uses Vincenty's formulae. It is heavily based on the Movable Type Scripts blog and Javascript Geodesy code.

Vincenty's inverse algorithm is accurate, but sensitive to nearly antipodal points. One approach would be to return NaN for such points, with the assumption that they are not frequently observed in practical applications, however as this discussion nicely pointed out the package cannot be complete if it cannot handle these situations. I found that the issue can be solved by relaxing one of convergence criteria, but it results in errors up to 0.25% vs geographiclib for these points.

So, instead, this library uses the vectorized Vincenty's formulae with geographiclib as a fallback for unconverged points.

See notebook for execution time comparisons vs geographiclib.

Direct method for 100,000 points

94.9 ms ± 25 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
vs
9.79 s ± 1.4 s per loop (mean ± std. dev. of 7 runs, 1 loop each)
Inverse method for 100,000 points

1.5 s ± 504 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
vs
24.2 s ± 3.91 s per loop (mean ± std. dev. of 7 runs, 1 loop each)

Setup

Requirements

  • Python 3.7+
  • Numpy
  • Geographiclib

Installation

Install it directly into an activated virtual environment:

pip install geovectorslib

Usage

After installation, the package can imported:

$ python
>>> from geovectorslib import direct, inverse
>>> direct(lats1, lon1, bearings, distances, ellipsoid='WGS84')
>>> inverse(lats1, lons1, lats2, lons2, ellipsoid='WGS84')
Latitudes in decimal degrees [-90; +90].
Longitudes in decimal degrees [-180; +180].
Bearings in decimal degrees [0; 360].
Distances in meters.

You can specify a different ellipsoid or leave blank to use WGS84. Available ellipsoid keywords are:

  • ETRS89
  • WGS84
  • GRS80
  • GRS67
  • Intl-1924
  • Clarke-1880
  • Airy-1830

References

Movable Type Scripts

Geodesy

Geopy

Geographiclib

Stackoverflow discussion

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geovectorslib-1.4.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

geovectorslib-1.4-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file geovectorslib-1.4.tar.gz.

File metadata

  • Download URL: geovectorslib-1.4.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.15.10-arch1-1

File hashes

Hashes for geovectorslib-1.4.tar.gz
Algorithm Hash digest
SHA256 184ef681316a3f2c703696b1f7c7d2b7d61cda21eba68ffc58fe122ac123fe24
MD5 080d56349bf53033c33f385422ffdd1e
BLAKE2b-256 17219405bd5cb7198189f5894a0dcd03d95c487e7d86827aaf886e3a82fcc4a6

See more details on using hashes here.

File details

Details for the file geovectorslib-1.4-py3-none-any.whl.

File metadata

  • Download URL: geovectorslib-1.4-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.15.10-arch1-1

File hashes

Hashes for geovectorslib-1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 575bb902400a30975551407a493642e153822cb696695f6b78f17d009d72921b
MD5 dd8377967811fd47019efd6055413d59
BLAKE2b-256 98aba8c2c4cf109d954b08d2f9e0b69443a8dac53cd33183c7f862132bab11f7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page