← Geo og vejr

Marinprognose

GET /marine/forecast

Hent en flerdages marinvejrudsigt med timeopdelt bølgehøjde, bølgeretning, bølgeperiode og dønningsprognoser. Konfigurerbar op til 7 dage frem. Nyttigt til planlægning af sejlruter, planlægning af offshore-arbejde, timing af surfsessioner og opbygning af marine sikkerhedsadvarselssystemer. Data fra Open-Meteo marine prognosemodeller.

Parametre

lat påkrævet

Latitude

lon påkrævet

Longitude

days valgfri standard: 7

Days

Eksempelforespørgsler

Grundlæggende brug
curl "https://nordapi.ee/api/v1/marine/forecast?lat=59.9&lon=10.7"
7-day marine forecast for Oslo Fjord
curl "https://nordapi.ee/api/v1/marine/forecast?lat=59.9&lon=10.7"
3-day surf forecast for Bali
curl "https://nordapi.ee/api/v1/marine/forecast?lat=-8.72&lon=115.17&days=3"
5-day forecast for North Sea
curl "https://nordapi.ee/api/v1/marine/forecast?lat=56.0&lon=3.0&days=5"

Livesvar

{
  "data": {
    "daily": {
      "swell_wave_height_max": [
        0.02,
        0.02,
        0.0,
        null,
        null,
        null,
        null
      ],
      "time": [
        "2026-05-22",
        "2026-05-23",
        "2026-05-24",
        "2026-05-25",
        "2026-05-26",
        "2026-05-27",
        "2026-05-28"
      ],
      "wave_direction_dominant": [
        190,
        206,
        277,
        null,
        null,
        null,
        null
      ],
      "wave_height_max": [
        0.16,
        0.34,
        0.22,
        null,
        null,
        null,
        null
      ],
      "wave_period_max": [
        1.7,
        2.25,
        2.0,
        null,
        null,
        null,
        null
      ],
      "wind_wave_height_max": [
        0.16,
        0.34,
        0.22,
        null,
        null,
        null,
        null
      ]
    },
    "daily_units": {
      "swell_wave_height_max": "m",
      "time": "iso8601",
      "wave_direction_dominant": "°",
      "wave_height_max": "m",
      "wave_period_max": "s",
      "wind_wave_height_max": "m"
    },
    "elevation": 0.0,
    "generationtime_ms": 0.3737211227416992,
    "latitude": 59.875008,
    "longitude": 10.7083435,
    "timezone": "Europe/Oslo",
    "timezone_abbreviation": "GMT+2",
    "utc_offset_seconds": 7200
  },
  "success": true
}