High-resolution experiment

Title High-resolution experiment
Description High-resolution forecast experiment
DOI -
Experiment ID i4ql
Experiment class ECMWF Research Department
Examples

Download 2m temperature

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

server = ECMWFDataServer()

server.retrieve({
    "area": "80/-20/20/30",
    "class": "rd",
    "dataset": "research",
    "date": "2023-10-11/to/2023-10-29",
    "expver": "i4ql",
    "grid": "0.05/0.05",
    "levtype": "sfc",
    "param": "2t",
    "step": "0/1/2/3/4",
    "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({
    "area": "80/-20/20/30",
    "class": "rd",
    "dataset": "research",
    "date": "2023-10-11/to/2023-10-29",
    "expver": "i4ql",
    "grid": "0.05/0.05",
    "levtype": "sfc",
    "param": "tp",
    "step": "0/1/2/3/4",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})