Skip to main content

A python package for generating the shortest sea route between two points on Earth.

Reason this release was yanked:

Network has been updated, which allows to find any location

Project description

Searoute py

An python package for generating the shortest sea route between two points on Earth.

If points are on land, the function will attempt to find the nearest point on the sea and calculate the route from there.

Not for routing purposes! This library was developed to generate realistic-looking searoutes for visualizations of maritime routes, not for mariners to route their ships.

Searoute map

Installation

pip install searoute

Usage

import searoute as sr

#Define origin and destination points:
origin = [0.3515625, 50.064191736659104]

destination = [117.42187500000001, 39.36827914916014]


route = sr.searoute(origin, destination)
# > Returns a GeoJSON LineString Feature
# show route distance with unit
print("{:.1f} {}".format(route.properties['length'], route.properties['units']))

# Optionally, define the units for the length calculation included in the properties object.
# Defaults to km, can be can be 'm' = meters 'mi = miles 'ft' = feets 'in' = inches 'deg' = degrees
# 'cen' = centimeters 'rad' = radians 'naut' = nauticals 'yd' = yards
routeMiles = sr.searoute(origin, destination, units="mi")

Credits

Based on Eurostat's Searoute Java library and Dijkstra's algorithm implemented by perliedman.

Change Log

1.0.2 (30/09/2022)

  • First Release, published module

1.0.3 (04/10/2022)

  • changed the core of the calculation to osmnx library for better perfomance
  • making 1.0.2 obsolete
  • added duration measurement together with length in the LineString properties

1.0.3 (04/10/2022)

  • fix requirements of the module

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

searoute-1.0.4.tar.gz (83.8 kB view hashes)

Uploaded Source

Supported by

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