Weather routing: Difference between revisions

From Rosetta Code
Content added Content deleted
(Determine the best course for a sailboat given wind conditions and boat performance data.)
 
mNo edit summary
Line 9: Line 9:
</ul>
</ul>


Given the above information and a specific path, progress and arrival time is determined. The weather routing problem, conversely, is to determine the path which results in the earliest arrival time.
Given the above information and a specific path, progress and arrival time are determined. The weather routing problem, conversely, is to determine the path which results in the earliest arrival time.

Revision as of 23:56, 7 July 2015

Template:Weather Routing The weather routing problem has the following parts:

  • a predicted surface wind direction and speed, at increments of longitude, latitude, and time
  • an expected surface current direction and speed, at increments of longitude, latitude, and time
  • 'polar data' describing maximum speed of a sailboat at points of sail for a given speed of wind over water
  • regions for sailing (the open ocean) and not (the land, shallows, restricted areas, etc.)
  • a starting location and time, and a destination

Given the above information and a specific path, progress and arrival time are determined. The weather routing problem, conversely, is to determine the path which results in the earliest arrival time.