ERA6 prototype 1 sample data for testing only June to August 2022

Title ERA6 prototype 1 sample data for testing only June to August 2022
Description This experiment is a prototype. It has several important limitations. It is not an ERA6 production. It has known missing components. It should not be used for any application or publication. It should be used to provide feedback to ECMWF.
DOI 10.21957/gmf0-rw02
Experiment ID ibpb
Experiment class ECMWF Research Department
Examples

This example extracts 10-meter wind components 3-hour forecast data issued from the first day/hour of the experiment as a GRIB file.

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2022-06-01",
    "expver": "ibpb",
    "levtype": "sfc",
    "param": "10u/10v",
    "step": "3",
    "stream": "lwda",
    "target": "output1.grib",
    "time": "00:00:00",
    "type": "fc"
})

This example extracts hourly (00:00:00, 01:00:00, ... 23:00:00) two-meter temperature analysis data issued for all 24 hours on the first day of the last month of the experiment as a NetCDF file at 0.25 deg x 0.25 deg resolution.

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2022-08-01",
    "expver": "ibpb",
    "format": "netcdf",
    "grid": "0.25/0.25",
    "levtype": "sfc",
    "param": "2t",
    "stream": "lwda",
    "target": "output2.nc",
    "time": "00/to/23/by/1",
    "type": "an"
})