high resolution forecast experiment with coupled ice-ocean (APPLICATE)

Title high resolution forecast experiment with coupled ice-ocean (APPLICATE)
Description Coupled atmosphere-ice-ocean forecast experiment. SSTs partially coupled in the extratropics. 10-day high resolution (TCo1279) forecast experiments performed with Cy46r1 of the ECMWF-IFS were initialised at 0z for DJFM2017/18.
DOI 10.21957/xbe4-6v10
Experiment ID hdwl
Experiment class ECMWF Research Department
Examples

retrieve 2m temperature at 24 hours into the forecast

#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2017-12-01",
    "expver": "hdwl",
    "levtype": "sfc",
    "param": "2t",
    "step": "24",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})

retrieve sea ice concentration at 24 hours into the forecast

#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2017-12-01",
    "expver": "hdwl",
    "levtype": "sfc",
    "param": "ci",
    "step": "24",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})