high resolution forecast experiment forced by observed sea ice concentration (APPLICATE)

Title high resolution forecast experiment forced by observed sea ice concentration (APPLICATE)
Description Atmosphere only forecast experiment with updated observed sea ice concentration from the ECMWF operational analysis. 10-day high resolution (TCo1279) forecast experiments performed with Cy46r1 of the ECMWF-IFS were initialised at 0z for DJFM2017/18.
DOI 10.21957/4r57-jb72
Experiment ID hmgx
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": "hmgx",
    "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": "hmgx",
    "levtype": "sfc",
    "param": "ci",
    "step": "24",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})