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

Title high resolution forecast experiment forced by persisted sea ice concentration (APPLICATE)
Description Atmosphere only forecast experiment with sea ice concentration persisted 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/4vw1-0f68
Experiment ID hdvq
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": "hdvq",
    "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": "hdvq",
    "levtype": "sfc",
    "param": "ci",
    "step": "24",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})