Analysis with ECMWF IFS for EUREC4A (at 25km), without assimilating dropsondes and radiosondes

Title Analysis with ECMWF IFS for EUREC4A (at 25km), without assimilating dropsondes and radiosondes
Description Research analysis experiment produced with ECMWF IFS cycle 47R1, at TCo399 (25km), for the EUREC4A field campaign (15.01.2020-14.02.2020). The dropsondes and radiosondes launched in the campaign are denied from the data assimilation.
DOI 10.21957/7zx9-6084
Experiment ID hfff
Experiment class ECMWF Research Department
Examples

Retrieval of temperature and humidity from the analysis on model levels on original model grid

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2020-01-16",
    "expver": "hfff",
    "levellist": "137/to/106",
    "levtype": "ml",
    "param": "t/q",
    "step": "0",
    "stream": "lwda",
    "target": "TQ_0utc.grib",
    "time": "00:00:00",
    "type": "an"
})

Retrieval of 2m temperature from the analysis on original model grid

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2020-01-16",
    "expver": "hfff",
    "levtype": "sfc",
    "param": "2t",
    "step": "0",
    "stream": "lwda",
    "target": "TQ_0utc.grib",
    "time": "00:00:00",
    "type": "an"
})