DestinE experiment for Deltares - case Storm Chiara

Title DestinE experiment for Deltares - case Storm Chiara
Description This is an global forecast experiment for Deltares use case in DestinE (DE370a). It covers the period of storm Chiara, with initial dates from 03/02/2020 to 16/02/2020.
DOI -
Experiment ID icrv
Experiment class ECMWF Research Department
Examples

Download 2m temperature

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2020-02-03/to/2020-02-16",
    "expver": "icrv",
    "levtype": "sfc",
    "param": "2t",
    "step": "0/to/120",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})

Download accumulated precipitation

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2020-02-03/to/2020-02-16",
    "expver": "icrv",
    "levtype": "sfc",
    "param": "tp",
    "step": "0/to/120",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})