ERA6 prototype test sample dataset 2 from Oct 2019 to Sept 2020

Title ERA6 prototype test sample dataset 2 from Oct 2019 to Sept 2020
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/1qyd-ep25
Experiment ID ig9j
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": "2019-10-01",
    "expver": "ig9j",
    "levtype": "sfc",
    "param": "10u/10v",
    "step": "3",
    "stream": "lwda",
    "target": "output.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 second month of the experiment as a NetCDF file at 0.14 deg x 0.14 deg resolution.

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

server = ECMWFDataServer()

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