Get weather along a route

When using our /route/v2/ endpoint, users are returned suggested vessel routes, for a particular vessel and speed, through canals and straight. You can use our weather/v2/track endpoint to post the route you obtained from /route/v2/, in order to get the weather at each route point. This works both in the past, with historical values, or in the future, with forecasted values.

Alternatively, you can form your own GeoJSON object, and post it to our weather/v2/track endpoint to obtain weather on your route. A minima, your FeatureCollection should contain at least one Feature, with the properties departure and speed, and the corresponding geometry. Below an example of such a minimal object:

{
  "type": "FeatureCollection",
  "properties": {},
  "features": [
      {
          "type": "Feature",
          "properties": {
              "departure": 1581166465000,
              "arrival": 1581191106000,
              "duration": 24641000,
              "speed": 42.0
          },
          "geometry": {
              "type": "LineString",
              "coordinates": [[7.294921874999999,54.265224078605684],[3.076171875,54.13669645687002],[-1.318359375,57.9148477670092]]
          }
      }
  ]
}

Note that using our endpoint /route/v2/sea/{coordinates}/plan yields the best results, since we cap the vessel speed in canals and straights where there are vessel speed restrictions.

All values are expressed in the standard SI units (temperatures in Celcius degrees, humidity, cloud coverage and ice coverage in percentages, pressure in hectopascals, precipitation in millimeters, times in seconds, distances in meters, speeds in meters per second, salinity in PSU).

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Body Params

GeoJSON object to compute weather for

string
enum
required
bbox
array of numbers

A GeoJSON object MAY have a member named "bbox" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries.

bbox
Response

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json