Ensemble temperature forecast experiment using GRIB IEEE data encoding

Title Ensemble temperature forecast experiment using GRIB IEEE data encoding
Description One model cycle of ECMWF ensemble prediction system set up to explore data information content in the scope of a ESoWC project. Perturbed and control forecast of temperature on 91 model levels are archived. The data is encoded as IEEE single-precision (32-bit floats) circumventing any other lossy compression. This is in contrast to the default 16- or 24-bit linear packing used in the ECMWF data archive. The volume of the full experiment is 1 TB.
DOI 10.21957/phgf-bv34
Experiment ID hgof
Experiment class ECMWF Research Department
Examples

Retrieve temperature (paramid=130) forecast on the lowest model level, all the forecast steps and the first ensemble realisation for 24 September 2020 on the native grid.

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2020-09-24",
    "expver": "hgof",
    "levelist": "91",
    "levtype": "ml",
    "number": "1",
    "param": "130",
    "step": "0/1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/24/25/26/27/28/29/30/31/32/33/34/35/36/37/38/39/40/41/42/43/44/45/46/47/48/49/50/51/52/53/54/55/56/57/58/59/60/61/62/63/64/65/66/67/68/69/70/71/72/73/74/75/76/77/78/79/80/81/82/83/84/85/86/87/88/89/90/93/96/99/102/105/108/111/114/117/120/123/126/129/132/135/138/141/144/150/156/162/168/174/180/186/192/198/204/210/216/222/228/234/240/246/252/258/264/270/276/282/288/294/300/306/312/318/324/330/336/342/348/354/360",
    "stream": "enfo",
    "target": "t_n1_ml91.grib",
    "time": "00:00:00",
    "type": "pf"
})