```html Using Ocean Eddies to Route a 1 MPH Seastead (Caribbean focus)

Routing a ~1 MPH Seastead by “Riding” Caribbean Eddies

Scope & assumptions: You described ~1 MPH continuous propulsion relative to local water (≈0.87 knots) and asked about exploiting mesoscale eddies/current features near Anguilla and for a Caribbean loop. This is an operational-oceanography + routing problem. The notes below are practical/engineering-oriented and not a substitute for professional marine routing or safety planning.

1) What sources predict eddies into the future? How far is reliable?

Primary forecast sources (models)

“Eddies” in products like RTOFS/HYCOM are typically mesoscale features (~10–200 km) resolved by high-resolution ocean circulation models. The usual sources:

Observation-based “nowcasts” (to detect eddies today)

How far ahead are eddy predictions “reliable”?

In practice, eddy existence and general region can be somewhat predictable, but exact position, phase, and the best “lane” degrades quickly.

Forecast horizon What’s typically usable for routing? Why it breaks down
0–3 days Often quite usable for tactical routing (which side of an eddy, where a jet is strongest). Still sensitive to assimilation timing, cloud gaps in SST, local wind bursts, etc.
4–10 days Sometimes usable for strategic planning: “a favorable feature likely persists in this corridor”. Mesoscale phase errors grow; eddy centers can drift tens of km or more.
10–20+ days Usually only broad-brush (climatology-like): prevailing currents, seasonal tendencies. Chaotic eddy dynamics; small errors compound into large track/strength errors.

Rule of thumb: treat mesoscale eddy routing as a “continually re-optimized” problem with frequent updates (daily or every few days). Don’t expect a single plan made weeks ahead to stay optimal.

2) Software/packages/algorithms that work with eddy forecasts (and open source options)

Core idea

You have a vehicle with limited speed through water, moving in a time-varying velocity field. The standard approach is:

Open-source building blocks

Routing/optimization algorithms that are commonly effective

Practical recommendation: For a DIY project, a strong path is: xarray (read currents) + Parcels or custom integrator (simulate) + a search algorithm (A* / dynamic programming) + frequent re-plans.

3) How well can “eddy surfing” work for a 1 MPH platform in practice?

It can help, but the ceiling is limited by (a) how strong/coherent the favorable flows are where you are, (b) how often you can stay in them, and (c) how much detour/time you spend “hunting” for them.

Operational reality: Expect “stop-and-go” optimization: sometimes you make great progress for several days, sometimes you slow down or wait/reposition to catch the next favorable feature.

4) “Eddies can’t go through land, so we don’t have to worry about being pushed into land,” right?

No—being set toward land by currents is still a real hazard. Even if an eddy “doesn’t cross land,” its flow field can have onshore components, especially where currents interact with island shelves, headlands, banks, and boundary layers. Also, near islands the flow can accelerate in passes and around capes, creating strong localized sets.

Key points:

Practical mitigation: maintain large “coastal buffers” (tens of miles, sometimes more), use conservative no-go zones near islands/shallows, and treat near-coast routing as a separate, higher-risk mode.

5) Estimated time for a loop around the Caribbean Sea using eddies

What “loop” means (definition)

There are many ways to define “around the Caribbean.” A reasonable “family seastead loop” that stays mostly in open water but traces the basin could be approximated as:

Distance estimate

A coarse but serviceable estimate for such a “basin loop” is on the order of:

Speed over ground scenarios

Your propulsion: 1 MPH through water (≈0.87 knots).

Scenario Average favorable current component (net) Average speed over ground Time for 3,450–4,600 miles
No meaningful help ~0 MPH ~1.0 MPH ~144–192 days (4.7–6.3 months)
Moderate eddy help ~+0.3 to +0.6 MPH ~1.3–1.6 MPH ~90–148 days (3.0–4.9 months)
Strong, consistently exploited help ~+0.8 to +1.0 MPH ~1.8–2.0 MPH ~72–106 days (2.4–3.5 months)

My practical estimate: if you are actively routing and re-optimizing with forecasts, ~3 to 5 months is a reasonable planning range for a “Caribbean loop,” with occasional “fast weeks” and “slow weeks.” Getting reliably down near ~2.5–3 months would require unusually good alignment of currents with your chosen direction, plus tolerance for detours and waiting.

Clockwise vs counterclockwise: Either can work, but the “best” depends strongly on season, where eddies are shedding, and how you define the loop. In practice you would choose direction opportunistically based on the next 1–2 weeks of forecast flow.

6) Are there usable eddies in other places (South Pacific, Mediterranean, E. South America)?

Yes—mesoscale eddies are common in most oceans. What changes is (a) their size/strength, (b) how easy they are to observe/forecast, and (c) how much land/shallows constrain you.

Mediterranean

South Pacific

Eastern coast of South America

7) Practical next steps (if you want to build this into a website/tool)

If you tell me: (1) your desired “loop” definition/waypoints, (2) how far offshore you want to stay, and (3) whether you can pause/wait, I can provide a more concrete distance estimate and a routing approach you can implement (including a simple architecture and pseudocode).

Links (starting points)

```