ecland_cy49r1_era5_forced_i8ki_o200_2010_2022

Title ecland_cy49r1_era5_forced_i8ki_o200_2010_2022
Description ECLand offline surface model (CY49R1) run forced by ERA5 reanalysis with CAMAFLOOD activated. For use in ML land emulation experiments.
DOI 10.21957/n17n-6a68
Experiment ID i8ki
Experiment class ECMWF Research Department
Examples

Extracting a single soil moisture field, type=an

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2010-01-01",
    "expver": "i8ki",
    "levtype": "sfc",
    "param": "swvl1",
    "stream": "oper",
    "target": "swvl1_2010_01_01_00.grib",
    "time": "00:00:00",
    "type": "an"
})

Extracting 1 month of runoff fields, type=fc

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2010-01-01",
    "expver": "i8ki",
    "levtype": "sfc",
    "param": "ro",
    "step": "1/to/744",
    "stream": "oper",
    "target": "ro_2010_01.grib",
    "time": "00:00:00",
    "type": "fc"
})