Logo
developer platform
Docs
API
Pricing
Showcase
API Overview
Geocoding
Geocoding
Geocoding NearbyGeocoding Search
Weather
Weather Core
ForecastRadarClimateWarnings
Weather Timeseries
Timeseries ModelsTimeseries Point ForecastTimeseries Route Forecast
Weather Ensemble
Ensemble ModelsEnsemble Point Forecast
Weather Maps
Maps ModelsMaps Layers
Marine
Marine Timeseries
Timeseries ModelsTimeseries Point ForecastTimeseries Route Forecast
Marine Ensemble
Ensemble ModelsEnsemble Point Forecast
Marine Shipping
Shipping Point ForecastShipping Route Forecast
Marine Ports
Port ListPort Info
Observations
Tropical Storms
Tropical Storms
Mobility (The Netherlands)
Mobility Traffic
Traffic OverviewTraffic Geo
Mobility Transit
Transit Planner SearchTransit I'm PlannerTransit Stops NearbyTransit Stop Departures

Timeseries Models

GET
https://api.infoplaza.com/v1/marine/timeseries/models

Description

List of available weather models and elements. When latitude and longitude are provided, only models available for that location are returned.

Parameters

ParameterTypeRequiredDefaultDescription
latnumberOptional-The latitude of the location
lonnumberOptional-The longitude of the location

Response

PropertyTypeDescription
models
arrayArray of weather models available.
└─id
stringUnique identifier for the weather model.
└─beta
booleanIndicates if the model is in beta.
└─name
stringHuman-readable name of the weather model.
└─type
stringType of model, e.g., 'Deterministic'.
└─altId
stringAlternative identifier for the model (optional).
└─region
stringGeographical region covered by the model.
└─maxzoom
integerMaximum zoom level for map visualization.
└─offsets
arrayList of forecast offsets in hours or time steps.
└─category
stringCategory of weather data provided, e.g., 'wave', 'ocean'.
└─elements
arrayList of weather elements or parameters available in the model.
└─id
stringIdentifier for the weather element.
└─name
stringHuman-readable name of the element.
└─units
arrayList of units supported for this element.
└─levels
arrayList of vertical levels or measurement heights available for this element.
└─unitDefault
stringDefault unit of measurement for the element (optional).
└─runtimes
arrayList of available runtime timestamps for the model (UNIX timestamps).
└─sequence
stringSequence descriptor for forecast times, e.g., 'seq:[0:1:132]'.
└─institute
stringName of the institute or organization producing the model.
└─resolution
stringSpatial resolution of the model, e.g., '1 km', '25 km'.
└─boundingbox
objectGeographical bounding box of the model coverage area.
└─east
numberEastern boundary longitude.
└─west
numberWestern boundary longitude.
└─north
numberNorthern boundary latitude.
└─south
numberSouthern boundary latitude.
└─runtimeLast
integerTimestamp of the last available runtime of the model (UNIX timestamp).
└─runtimesHours
arrayHourly offsets of runtimes within a day.
└─regionCategory
stringCategory of the region, e.g., 'regional', 'continental', 'global'.
modelCount
integerTotal count of the models available.

Example Request

curl "https://api.infoplaza.com/v1/marine/timeseries/models
     ?api_key=$INFOPLAZA_API_KEY"

Example Response

{
  "models": [
    {
      "id": "dmiwam-dw",
      "beta": true,
      "name": "DMI Danish waters WAM",
      "type": "Deterministic",
      "region": "Denmark",
      "maxzoom": 8,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132
      ],
      "category": "wave",
      "elements": [
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        }
      ],
      "runtimes": [
        1788674400,
        1788696000,
        1788717600,
        1788739200
      ],
      "sequence": "seq:[0:1:132]",
      "institute": "DMI",
      "resolution": "1 km",
      "boundingbox": {
        "east": 16,
        "west": 7,
        "north": 59.999999999999986,
        "south": 53.000000000000014
      },
      "runtimeLast": 1788674400,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "dmidkss-idw",
      "beta": false,
      "name": "DMI DKSS Inner Danish Waters",
      "type": "Deterministic",
      "region": "Inner Danish Waters",
      "maxzoom": 8,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120
      ],
      "category": "ocean",
      "elements": [
        {
          "id": "salinity",
          "name": "Salinity",
          "units": [
            "psu"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "psu"
        },
        {
          "id": "seasurfaceheight",
          "name": "Sea surface height",
          "units": [
            "m",
            "ft",
            "cm"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        }
      ],
      "runtimes": [
        1788674400,
        1788696000,
        1788717600,
        1788739200
      ],
      "sequence": "seq:[0:1:120]",
      "institute": "DMI",
      "resolution": "1 km",
      "boundingbox": {
        "east": 14.826,
        "west": 9.34,
        "north": 57.59599999999999,
        "south": 53.587
      },
      "runtimeLast": 1788674400,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "dmidkss-lf",
      "beta": false,
      "name": "DMI DKSS Limfjord",
      "type": "Deterministic",
      "region": "Limfjord",
      "maxzoom": 10,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120
      ],
      "category": "ocean",
      "elements": [
        {
          "id": "seasurfaceheight",
          "name": "Sea surface height",
          "units": [
            "m",
            "ft",
            "cm"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "salinity",
          "name": "Salinity",
          "units": [
            "psu"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "psu"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        }
      ],
      "runtimes": [
        1788674400,
        1788696000,
        1788717600,
        1788739200
      ],
      "sequence": "seq:[0:1:120]",
      "institute": "DMI",
      "resolution": "0 km",
      "boundingbox": {
        "east": 10.385000000000002,
        "west": 8.138,
        "north": 57.109,
        "south": 56.460999999999984
      },
      "runtimeLast": 1788674400,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "dmidkss-lb",
      "beta": false,
      "name": "DMI DKSS Little Belt",
      "type": "Deterministic",
      "region": "Little Belt",
      "maxzoom": 10,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120
      ],
      "category": "ocean",
      "elements": [
        {
          "id": "salinity",
          "name": "Salinity",
          "units": [
            "psu"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "psu"
        },
        {
          "id": "seasurfaceheight",
          "name": "Sea surface height",
          "units": [
            "m",
            "ft",
            "cm"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        }
      ],
      "runtimes": [
        1788674400,
        1788696000,
        1788717600,
        1788739200
      ],
      "sequence": "seq:[0:1:120]",
      "institute": "DMI",
      "resolution": "0 km",
      "boundingbox": {
        "east": 10.018,
        "west": 9.493,
        "north": 55.709999999999994,
        "south": 55.24600000000001
      },
      "runtimeLast": 1788674400,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "dmidkss-nsbs",
      "beta": false,
      "name": "DMI DKSS North Sea Baltic Sea",
      "type": "Deterministic",
      "region": "North Sea / Baltic Sea",
      "maxzoom": 5,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120
      ],
      "category": "ocean",
      "elements": [
        {
          "id": "currentdirection",
          "name": "Direction of current",
          "units": [
            "°"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "°"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "temperature",
          "name": "Temperature",
          "units": [
            "°C",
            "°F",
            "K"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "°C"
        },
        {
          "id": "currentvector",
          "name": "Current vector",
          "units": [],
          "levels": [
            "seasurface"
          ]
        },
        {
          "id": "seasurfaceheight",
          "name": "Sea surface height",
          "units": [
            "m",
            "ft",
            "cm"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "salinity",
          "name": "Salinity",
          "units": [
            "psu"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "psu"
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "currentspeed",
          "name": "Speed of current",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "m/s"
        }
      ],
      "runtimes": [
        1788674400,
        1788696000,
        1788717600,
        1788739200
      ],
      "sequence": "seq:[0:1:120]",
      "institute": "DMI",
      "resolution": "6 km",
      "boundingbox": {
        "east": 30.292,
        "west": -4.125,
        "north": 65.875,
        "south": 48.52500000000001
      },
      "runtimeLast": 1788674400,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "dmidkss-if",
      "beta": false,
      "name": "DMI DKSS Roskilde Isefjord",
      "type": "Deterministic",
      "region": "Roskilde Isefjord",
      "maxzoom": 10,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120
      ],
      "category": "ocean",
      "elements": [
        {
          "id": "seasurfaceheight",
          "name": "Sea surface height",
          "units": [
            "m",
            "ft",
            "cm"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "salinity",
          "name": "Salinity",
          "units": [
            "psu"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "psu"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        }
      ],
      "runtimes": [
        1788674400,
        1788696000,
        1788717600,
        1788739200
      ],
      "sequence": "seq:[0:1:120]",
      "institute": "DMI",
      "resolution": "0 km",
      "boundingbox": {
        "east": 12.124,
        "west": 11.613,
        "north": 55.97599999999999,
        "south": 55.65400000000001
      },
      "runtimeLast": 1788674400,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "dmidkss-ws",
      "beta": false,
      "name": "DMI DKSS Wadden Sea",
      "type": "Deterministic",
      "region": "Wadden Sea",
      "maxzoom": 7,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120
      ],
      "category": "ocean",
      "elements": [
        {
          "id": "seasurfaceheight",
          "name": "Sea surface height",
          "units": [
            "m",
            "ft",
            "cm"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "salinity",
          "name": "Salinity",
          "units": [
            "psu"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "psu"
        }
      ],
      "runtimes": [
        1788674400,
        1788696000,
        1788717600,
        1788739200
      ],
      "sequence": "seq:[0:1:120]",
      "institute": "DMI",
      "resolution": "2 km",
      "boundingbox": {
        "east": 10.486,
        "west": 6.181,
        "north": 55.72400000000045,
        "south": 53.224999999999994
      },
      "runtimeLast": 1788674400,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "dmiwam-natlant",
      "beta": true,
      "name": "DMI North Atlantic Ocean WAM",
      "type": "Deterministic",
      "region": "North Atlantic Ocean",
      "maxzoom": 3,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132
      ],
      "category": "wave",
      "elements": [
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        }
      ],
      "runtimes": [
        1788674400,
        1788696000,
        1788717600,
        1788739200
      ],
      "sequence": "seq:[0:1:132]",
      "institute": "DMI",
      "resolution": "25 km",
      "boundingbox": {
        "east": 29.999999999999996,
        "west": -69,
        "north": 77.99999999999999,
        "south": 29.999999999999993
      },
      "runtimeLast": 1788674400,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "continental"
    },
    {
      "id": "dmiwam-nsb",
      "beta": true,
      "name": "DMI North Sea-Baltic WAM",
      "type": "Deterministic",
      "region": "North Sea-Baltic Sea",
      "maxzoom": 5,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132
      ],
      "category": "wave",
      "elements": [
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        }
      ],
      "runtimes": [
        1788674400,
        1788696000,
        1788717600,
        1788739200
      ],
      "sequence": "seq:[0:1:132]",
      "institute": "DMI",
      "resolution": "5 km",
      "boundingbox": {
        "east": 29.999999999999996,
        "west": -13,
        "north": 66.00000000000001,
        "south": 47
      },
      "runtimeLast": 1788674400,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "dwdewam",
      "beta": false,
      "name": "DWD European WAM",
      "type": "Deterministic",
      "region": "Europe",
      "maxzoom": 4,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78
      ],
      "category": "wave",
      "elements": [
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        }
      ],
      "runtimes": [
        1788782400,
        1788825600
      ],
      "sequence": "seq:[0:1:78]",
      "institute": "DWD",
      "resolution": "10 km",
      "boundingbox": {
        "east": 42.00000000000001,
        "west": -10.500000000000002,
        "north": 66.00000000000001,
        "south": 29.999999999999993
      },
      "runtimeLast": 1788782400,
      "runtimesHours": [
        0,
        12
      ],
      "regionCategory": "continental"
    },
    {
      "id": "dwdcwam",
      "beta": false,
      "name": "DWD German WAM",
      "type": "Deterministic",
      "region": "Europe",
      "maxzoom": 8,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78
      ],
      "category": "wave",
      "elements": [
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        }
      ],
      "runtimes": [
        1788782400,
        1788825600
      ],
      "sequence": "seq:[0:1:78]",
      "institute": "DWD",
      "resolution": "1 km",
      "boundingbox": {
        "east": 14.909722000000002,
        "west": 6.173611000000001,
        "north": 56.445834999999995,
        "south": 53.229168000000016
      },
      "runtimeLast": 1788782400,
      "runtimesHours": [
        0,
        12
      ],
      "regionCategory": "continental"
    },
    {
      "id": "dwdgwam",
      "beta": false,
      "name": "DWD Global WAM",
      "type": "Deterministic",
      "region": "Global",
      "maxzoom": 3,
      "offsets": [
        0,
        3,
        6,
        9,
        12,
        15,
        18,
        21,
        24,
        27,
        30,
        33,
        36,
        39,
        42,
        45,
        48,
        51,
        54,
        57,
        60,
        63,
        66,
        69,
        72,
        75,
        78,
        81,
        84,
        87,
        90,
        93,
        96,
        99,
        102,
        105,
        108,
        111,
        114,
        117,
        120,
        123,
        126,
        129,
        132,
        135,
        138,
        141,
        144,
        147,
        150,
        153,
        156,
        159,
        162,
        165,
        168,
        171,
        174
      ],
      "category": "wave",
      "elements": [
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        }
      ],
      "runtimes": [
        1788782400,
        1788825600
      ],
      "sequence": "seq:[0:3:174]",
      "institute": "DWD",
      "resolution": "25 km",
      "boundingbox": {
        "east": 180.00000000000003,
        "west": -180.00000000000003,
        "north": 85.05112878,
        "south": -85.05112878
      },
      "runtimeLast": 1788782400,
      "runtimesHours": [
        0,
        12
      ],
      "regionCategory": "global"
    },
    {
      "id": "ecmwfwamglobal",
      "beta": false,
      "name": "ECMWF Wave",
      "type": "Deterministic",
      "region": "Global",
      "maxzoom": 4,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        93,
        96,
        99,
        102,
        105,
        108,
        111,
        114,
        117,
        120,
        123,
        126,
        129,
        132,
        135,
        138,
        141,
        144
      ],
      "category": "wave",
      "elements": [
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveperiod_swell_secondary",
          "name": "Secondary swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_primary",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "waveperiod_peak",
          "name": "Wind wave peak period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:90,93:3:144]",
      "institute": "ECMWF",
      "resolution": "14 km",
      "boundingbox": {
        "east": 180.00000000000003,
        "west": -180.00000000000003,
        "north": 85.05112878,
        "south": -85.05112878
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        12
      ],
      "regionCategory": "global"
    },
    {
      "id": "gfswave",
      "beta": false,
      "name": "GFS wave",
      "type": "Deterministic",
      "region": "Global",
      "maxzoom": 3,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        123,
        126,
        129,
        132,
        135,
        138,
        141,
        144,
        147,
        150,
        153,
        156,
        159,
        162,
        165,
        168,
        171,
        174,
        177,
        180,
        183,
        186,
        189,
        192,
        195,
        198,
        201,
        204,
        207,
        210,
        213,
        216,
        219,
        222,
        225,
        228,
        231,
        234,
        237,
        240
      ],
      "category": "wave",
      "elements": [
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavedirection_swell_secondary",
          "name": "Secondary swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_swell_secondary",
          "name": "Secondary swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_swell_secondary",
          "name": "Secondary swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "wavedirection_primary",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_primary",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_swell_secondary",
          "name": "Secondary swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:120,123:3:240]",
      "institute": "NOAA",
      "resolution": "25 km",
      "boundingbox": {
        "east": 180.00000000000003,
        "west": -179.99999199444213,
        "north": 85.05112878,
        "south": -85.05112878
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "global"
    },
    {
      "id": "imw-wave",
      "beta": false,
      "name": "Infoplaza Wave",
      "type": "Deterministic",
      "altId": "optimal-wave",
      "region": "Global",
      "maxzoom": 3,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132,
        133,
        134,
        135,
        136,
        137,
        138,
        139,
        140,
        141,
        142,
        143,
        144,
        145,
        146,
        147,
        148,
        149,
        150,
        151,
        152,
        153,
        154,
        155,
        156,
        157,
        158,
        159,
        160,
        161,
        162,
        163,
        164,
        165,
        166,
        167,
        168,
        169,
        170,
        171,
        172,
        173,
        174,
        175,
        176,
        177,
        178,
        179,
        180,
        181,
        182,
        183,
        184,
        185,
        186,
        187,
        188,
        189,
        190,
        191
      ],
      "category": "wave",
      "elements": [
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:191]",
      "institute": "Infoplaza",
      "resolution": "25 km",
      "boundingbox": {
        "east": 180.00000000000003,
        "west": -180.00000000000003,
        "north": 85.05112878,
        "south": -85.05112878
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "global"
    },
    {
      "id": "imw-ww3-baltics",
      "beta": true,
      "name": "Infoplaza WW III Baltics",
      "type": "Deterministic",
      "region": "Baltics",
      "maxzoom": 5,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132,
        133,
        134,
        135,
        136,
        137,
        138,
        139,
        140,
        141,
        142,
        143,
        144,
        145,
        146,
        147,
        148,
        149,
        150,
        151,
        152,
        153,
        154,
        155,
        156,
        157,
        158,
        159,
        160,
        161,
        162,
        163,
        164,
        165,
        166,
        167,
        168,
        169,
        170,
        171,
        172,
        173,
        174,
        175,
        176,
        177,
        178,
        179,
        180,
        181,
        182,
        183,
        184,
        185,
        186,
        187,
        188,
        189,
        190,
        191
      ],
      "category": "wave",
      "elements": [
        {
          "id": "waveheight_swell_secondary",
          "name": "Secondary swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavevector_swell_secondary",
          "name": "Secondary swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavedirection_swell_secondary",
          "name": "Secondary swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_swell_secondary",
          "name": "Secondary swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:191]",
      "institute": "Infoplaza",
      "resolution": "6 km",
      "boundingbox": {
        "east": 30.333536148071293,
        "west": 9.16670036315918,
        "north": 66.00006866455078,
        "south": 53.83330154418945
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "imw-ww3-eastcoast",
      "beta": true,
      "name": "Infoplaza WW III East Coast",
      "type": "Deterministic",
      "region": "US East Coast",
      "maxzoom": 4,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132,
        133,
        134,
        135,
        136,
        137,
        138,
        139,
        140,
        141,
        142,
        143,
        144,
        145,
        146,
        147,
        148,
        149,
        150,
        151,
        152,
        153,
        154,
        155,
        156,
        157,
        158,
        159,
        160,
        161,
        162,
        163,
        164,
        165,
        166,
        167,
        168,
        169,
        170,
        171,
        172,
        173,
        174,
        175,
        176,
        177,
        178,
        179,
        180,
        181,
        182,
        183,
        184,
        185,
        186,
        187,
        188,
        189,
        190,
        191
      ],
      "category": "wave",
      "elements": [
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveperiod_swell_secondary",
          "name": "Secondary swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavedirection_swell_secondary",
          "name": "Secondary swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveheight_swell_secondary",
          "name": "Secondary swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavevector_swell_secondary",
          "name": "Secondary swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:191]",
      "institute": "Infoplaza",
      "resolution": "10 km",
      "boundingbox": {
        "east": -65,
        "west": -85,
        "north": 45.999999999999986,
        "south": 29.999999999999993
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "imw-ww3-eushelf",
      "beta": true,
      "name": "Infoplaza WW III EU Shelf",
      "type": "Deterministic",
      "region": "EU shelf",
      "maxzoom": 4,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132,
        133,
        134,
        135,
        136,
        137,
        138,
        139,
        140,
        141,
        142,
        143,
        144,
        145,
        146,
        147,
        148,
        149,
        150,
        151,
        152,
        153,
        154,
        155,
        156,
        157,
        158,
        159,
        160,
        161,
        162,
        163,
        164,
        165,
        166,
        167,
        168,
        169,
        170,
        171,
        172,
        173,
        174,
        175,
        176,
        177,
        178,
        179,
        180,
        181,
        182,
        183,
        184,
        185,
        186,
        187,
        188,
        189,
        190,
        191,
        192
      ],
      "category": "wave",
      "elements": [
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveperiod_swell_secondary",
          "name": "Secondary swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_swell_secondary",
          "name": "Secondary swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavevector_swell_secondary",
          "name": "Secondary swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_swell_secondary",
          "name": "Secondary swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:192]",
      "institute": "Infoplaza",
      "resolution": "18 km",
      "boundingbox": {
        "east": 31.00009155273438,
        "west": -14.999999999999998,
        "north": 66.00005340576173,
        "south": 40.00000000000001
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "continental"
    },
    {
      "id": "imw-ww3-glob30",
      "beta": true,
      "name": "Infoplaza WW III Glob30",
      "type": "Deterministic",
      "region": "Global",
      "maxzoom": 2,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132,
        133,
        134,
        135,
        136,
        137,
        138,
        139,
        140,
        141,
        142,
        143,
        144,
        145,
        146,
        147,
        148,
        149,
        150,
        151,
        152,
        153,
        154,
        155,
        156,
        157,
        158,
        159,
        160,
        161,
        162,
        163,
        164,
        165,
        166,
        167,
        168,
        169,
        170,
        171,
        172,
        173,
        174,
        175,
        176,
        177,
        178,
        179,
        180,
        181,
        182,
        183,
        184,
        185,
        186,
        187,
        188,
        189,
        190,
        191
      ],
      "category": "wave",
      "elements": [
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_swell_secondary",
          "name": "Secondary swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_swell_secondary",
          "name": "Secondary swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_swell_secondary",
          "name": "Secondary swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_swell_secondary",
          "name": "Secondary swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:191]",
      "institute": "Infoplaza",
      "resolution": "50 km",
      "boundingbox": {
        "east": 180.00000000000003,
        "west": -180.00000000000003,
        "north": 77.50000000000001,
        "south": -77.5
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "global"
    },
    {
      "id": "imw-ww3-mediterranean",
      "beta": true,
      "name": "Infoplaza WW III Mediterranean",
      "type": "Deterministic",
      "region": "Mediterranean",
      "maxzoom": 3,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132,
        133,
        134,
        135,
        136,
        137,
        138,
        139,
        140,
        141,
        142,
        143,
        144,
        145,
        146,
        147,
        148,
        149,
        150,
        151,
        152,
        153,
        154,
        155,
        156,
        157,
        158,
        159,
        160,
        161,
        162,
        163,
        164,
        165,
        166,
        167,
        168,
        169,
        170,
        171,
        172,
        173,
        174,
        175,
        176,
        177,
        178,
        179,
        180,
        181,
        182,
        183,
        184,
        185,
        186,
        187,
        188,
        189,
        190,
        191,
        192,
        193
      ],
      "category": "wave",
      "elements": [
        {
          "id": "waveperiod_swell_secondary",
          "name": "Secondary swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "wavedirection_swell_secondary",
          "name": "Secondary swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavevector_swell_secondary",
          "name": "Secondary swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_swell_secondary",
          "name": "Secondary swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:193]",
      "institute": "Infoplaza",
      "resolution": "25 km",
      "boundingbox": {
        "east": 59.99999999999999,
        "west": -5.5,
        "north": 47.5,
        "south": 10.000000000000002
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "mercator",
      "beta": false,
      "name": "MERCATOR",
      "type": "Deterministic",
      "region": "Global",
      "maxzoom": 4,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        49,
        50,
        51,
        52,
        53,
        54,
        55,
        56,
        57,
        58,
        59,
        60,
        61,
        62,
        63,
        64,
        65,
        66,
        67,
        68,
        69,
        70,
        71,
        72,
        73,
        74,
        75,
        76,
        77,
        78,
        79,
        80,
        81,
        82,
        83,
        84,
        85,
        86,
        87,
        88,
        89,
        90,
        91,
        92,
        93,
        94,
        95,
        96,
        97,
        98,
        99,
        100,
        101,
        102,
        103,
        104,
        105,
        106,
        107,
        108,
        109,
        110,
        111,
        112,
        113,
        114,
        115,
        116,
        117,
        118,
        119,
        120,
        121,
        122,
        123,
        124,
        125,
        126,
        127,
        128,
        129,
        130,
        131,
        132,
        133,
        134,
        135,
        136,
        137,
        138,
        139,
        140,
        141,
        142,
        143,
        144,
        145,
        146,
        147,
        148,
        149,
        150,
        151,
        152,
        153,
        154,
        155,
        156,
        157,
        158,
        159,
        160,
        161,
        162,
        163,
        164,
        165,
        166,
        167,
        168,
        169,
        170,
        171,
        172,
        173,
        174,
        175,
        176,
        177,
        178,
        179,
        180,
        181,
        182,
        183,
        184,
        185,
        186,
        187,
        188,
        189,
        190,
        191,
        192,
        193,
        194,
        195,
        196,
        197,
        198,
        199,
        200,
        201,
        202,
        203,
        204,
        205,
        206,
        207,
        208,
        209,
        210,
        211,
        212,
        213,
        214,
        215,
        216,
        217,
        218,
        219,
        220,
        221,
        222,
        223,
        224,
        225,
        226,
        227,
        228,
        229,
        230,
        231,
        232,
        233,
        234,
        235,
        236,
        237,
        238,
        239
      ],
      "category": "ocean",
      "elements": [
        {
          "id": "seasurfaceheight",
          "name": "Sea surface height",
          "units": [
            "m",
            "ft",
            "cm"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "currentvector",
          "name": "Current vector",
          "units": [],
          "levels": [
            "seasurface"
          ]
        },
        {
          "id": "temperature",
          "name": "Temperature",
          "units": [
            "°C",
            "°F",
            "K"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "°C"
        },
        {
          "id": "currentdirection",
          "name": "Direction of current",
          "units": [
            "°"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "°"
        },
        {
          "id": "currentspeed",
          "name": "Speed of current",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        }
      ],
      "runtimes": [
        1788739200,
        1788825600
      ],
      "sequence": "seq:[0:1:239]",
      "institute": "Mercator Ocean",
      "resolution": "10 km",
      "boundingbox": {
        "east": 180.00000000000003,
        "west": -180.00000000000003,
        "north": 85.05112878,
        "south": -80
      },
      "runtimeLast": 1788739200,
      "runtimesHours": [
        0
      ],
      "regionCategory": "global"
    },
    {
      "id": "mercator-bio",
      "beta": true,
      "name": "MERCATOR Biochemical",
      "type": "Deterministic",
      "region": "Global",
      "maxzoom": 3,
      "offsets": [
        12,
        36,
        60,
        84,
        108,
        132,
        156,
        180,
        204,
        228,
        252
      ],
      "category": "ocean",
      "elements": [
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "chlorophyll",
          "name": "Chlorophyll concentration",
          "units": [
            "mg/m3",
            "kg/m3",
            "g/m3",
            "µg/m3"
          ],
          "levels": [],
          "unitDefault": "mg/m3"
        }
      ],
      "runtimes": [
        1788739200,
        1788825600
      ],
      "sequence": "seq:[12:24:252]",
      "institute": "Mercator Ocean",
      "resolution": "25 km",
      "boundingbox": {
        "east": 180.00000000000003,
        "west": -180.00000000000003,
        "north": 85.05112878,
        "south": -80
      },
      "runtimeLast": 1788739200,
      "runtimesHours": [
        0
      ],
      "regionCategory": "global"
    },
    {
      "id": "mfwameurope",
      "beta": false,
      "name": "MeteoFrance French WAM",
      "type": "Deterministic",
      "region": "France",
      "maxzoom": 6,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        51,
        54,
        57,
        60,
        63,
        66,
        69,
        72
      ],
      "category": "wave",
      "elements": [
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:48,51:3:72]",
      "institute": "MeteoFrance",
      "resolution": "3 km",
      "boundingbox": {
        "east": 12.000000000000002,
        "west": -8,
        "north": 53.000000000000014,
        "south": 38
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "regional"
    },
    {
      "id": "mfwamglobal",
      "beta": false,
      "name": "MeteoFrance Global WAM",
      "type": "Deterministic",
      "region": "Global",
      "maxzoom": 4,
      "offsets": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23,
        24,
        25,
        26,
        27,
        28,
        29,
        30,
        31,
        32,
        33,
        34,
        35,
        36,
        37,
        38,
        39,
        40,
        41,
        42,
        43,
        44,
        45,
        46,
        47,
        48,
        51,
        54,
        57,
        60,
        63,
        66,
        69,
        72,
        75,
        78,
        81,
        84,
        87,
        90,
        93,
        96,
        99,
        102
      ],
      "category": "wave",
      "elements": [
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "waveperiod_swell",
          "name": "Swell period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "wavedirection_wind",
          "name": "Wind wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "windvector",
          "name": "Wind vector",
          "units": [],
          "levels": [
            "10m"
          ]
        },
        {
          "id": "wavevector_wind",
          "name": "Wind wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "winddirection",
          "name": "Wind direction",
          "units": [
            "°"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "°"
        },
        {
          "id": "wavevector_swell",
          "name": "Swell wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "windspeed",
          "name": "Wind speed",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt",
            "Bft"
          ],
          "levels": [
            "10m"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "wavevector_significant",
          "name": "Significant wave vector",
          "units": [],
          "levels": []
        },
        {
          "id": "waveheight_swell",
          "name": "Swell height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_mean",
          "name": "Mean wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        },
        {
          "id": "waveheight_wind",
          "name": "Wind wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "wavedirection_mean",
          "name": "Mean wave direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "wavedirection_swell",
          "name": "Swell direction",
          "units": [
            "°"
          ],
          "levels": [],
          "unitDefault": "°"
        },
        {
          "id": "waveheight_significant",
          "name": "Significant wave height",
          "units": [
            "m",
            "ft"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "waveperiod_wind",
          "name": "Wind wave period",
          "units": [
            "s"
          ],
          "levels": [],
          "unitDefault": "s"
        }
      ],
      "runtimes": [
        1788760800,
        1788782400,
        1788804000,
        1788825600
      ],
      "sequence": "seq:[0:1:48,51:3:102]",
      "institute": "MeteoFrance",
      "resolution": "10 km",
      "boundingbox": {
        "east": 179.99999999999403,
        "west": -180.00000000000003,
        "north": 85.05112878,
        "south": -85.05112878
      },
      "runtimeLast": 1788760800,
      "runtimesHours": [
        0,
        6,
        12,
        18
      ],
      "regionCategory": "global"
    },
    {
      "id": "ncep-rtofs",
      "beta": true,
      "name": "RTOFS",
      "type": "Deterministic",
      "region": "Global",
      "maxzoom": 4,
      "offsets": [
        0,
        3,
        6,
        9,
        12,
        15,
        18,
        21,
        24,
        27,
        30,
        33,
        36,
        39,
        42,
        45,
        48,
        51,
        54,
        57,
        60,
        63,
        66,
        69,
        72,
        75,
        78,
        81,
        84,
        87,
        90,
        93,
        96,
        99,
        102,
        105,
        108,
        111,
        114,
        117,
        120,
        123,
        126,
        129,
        132,
        135,
        138,
        141,
        144,
        147,
        150,
        153,
        156,
        159,
        162,
        165,
        168,
        171,
        174,
        177,
        180,
        183,
        186,
        189,
        192
      ],
      "category": "ocean",
      "elements": [
        {
          "id": "domain",
          "name": "Domain",
          "units": [
            "-"
          ],
          "levels": [],
          "unitDefault": "-"
        },
        {
          "id": "currentvector",
          "name": "Current vector",
          "units": [],
          "levels": [
            "seasurface"
          ]
        },
        {
          "id": "seasurfaceheight",
          "name": "Sea surface height",
          "units": [
            "m",
            "ft",
            "cm"
          ],
          "levels": [],
          "unitDefault": "m"
        },
        {
          "id": "salinity",
          "name": "Salinity",
          "units": [
            "psu"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "psu"
        },
        {
          "id": "currentdirection",
          "name": "Direction of current",
          "units": [
            "°"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "°"
        },
        {
          "id": "currentspeed",
          "name": "Speed of current",
          "units": [
            "m/s",
            "km/h",
            "mph",
            "kt"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "m/s"
        },
        {
          "id": "temperature",
          "name": "Temperature",
          "units": [
            "°C",
            "°F",
            "K"
          ],
          "levels": [
            "seasurface"
          ],
          "unitDefault": "°C"
        }
      ],
      "runtimes": [
        1788652800,
        1788739200
      ],
      "sequence": "seq:[0:3:192]",
      "institute": "NCEP",
      "resolution": "10 km",
      "boundingbox": {
        "east": 180.00000000000003,
        "west": -180.00000000000003,
        "north": 85.05112878,
        "south": -80
      },
      "runtimeLast": 1788652800,
      "runtimesHours": [
        0
      ],
      "regionCategory": "global"
    }
  ],
  "modelCount": 25
}