Seasonal (3-months) summer/autumn nature run at 1.4km resolution, aggregated to 9km

Title Seasonal (3-months) summer/autumn nature run at 1.4km resolution, aggregated to 9km
Description A Baseline for Global Weather and Climate Simulations at 1 km Resolution, data is aggregated/truncated to 9km, and avail 3-hourly, above 300hPa only upper level U wind is correct, meridional winds and vorticity/divergence is corrupted. see the paper https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2020MS002192
DOI 10.21957/107q-gy77
Experiment ID hipq
Experiment class ECMWF Research Department
Examples

mean sea level pressure (msl) surface field example

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

server = ECMWFDataServer()

server.retrieve({
    "anoffset": "9",
    "class": "rd",
    "dataset": "research",
    "date": "20190801",
    "expver": "hipq",
    "levtype": "sfc",
    "param": "msl",
    "step": "24",
    "stream": "lwda",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})

Upper air data (specific humidity at 500hPa) example

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

server = ECMWFDataServer()

server.retrieve({
    "anoffset": "9",
    "class": "rd",
    "dataset": "research",
    "date": "20190801",
    "expver": "hipq",
    "levelist": "500",
    "levtype": "pl",
    "param": "q",
    "step": "24",
    "stream": "lwda",
    "target": "output_pl.grib",
    "time": "00:00:00",
    "type": "fc"
})