UNPKG

signalk-tides

Version:

Tidal predictions for the vessel's position from various online sources.

8 lines (7 loc) 260 B
import neaps from "./neaps.js"; import noaa from "./noaa.js"; import stormglass from "./stormglass.js"; import worldtides from "./worldtides.js"; export default function createSources(app) { return [neaps, noaa, stormglass, worldtides].map(s => s(app)); }