ecland_cy49r2_era5_forced_iscb_n320_1998_2024

Title ecland_cy49r2_era5_forced_iscb_n320_1998_2024
Description ecLand offline surface model (CY49R2) run forced by ERA5 reanalysis. For use in ML land emulation experiments.
DOI 10.21957/0f6t-7f73
Experiment ID iscb
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": "2000-01-01",
    "expver": "iscb",
    "levtype": "sfc",
    "param": "swvl1",
    "step": "24",
    "stream": "oper",
    "target": "swvl1_2000_01_01_00.grib",
    "time": "00:00:00",
    "type": "an"
})

Extracting 1 day of latent heat flux accumulated field, type=fc

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2000-01-01",
    "expver": "iscb",
    "levtype": "sfc",
    "param": "slhf",
    "step": "6/12/18/24",
    "stream": "oper",
    "target": "slhf_2000_01_02_00.grib",
    "time": "00:00:00",
    "type": "fc"
})