ECMWF Seasonal reforecasts with climatological Leaf Area Index and fixed Land Use/Land Cover

Title ECMWF Seasonal reforecasts with climatological Leaf Area Index and fixed Land Use/Land Cover
Description This dataset contains parameters from four-month long seasonal reforecasts using ECMWF IFS cycle CY49R1 v-version 4 covering the period 1993-2019 and forced with datasets for Leaf Area Index (LAI) and Land Use/Land Cover (LULC) developed in the CONFESS project (https://confess-h2020.eu). This is a CONTROL Experiment with climatological LAI (2010-2019 based) and fixed LULC (2019) based on version climate.v020_ESACCI_LAI of the IFS climate fields and can be compared against similar experiments but with time-varying LAI and LULC (i14x) and time-varying LULC with climatological LAI (i14z). The IFS-NEMO coupled model in a relatively low resolution configuration (TCo199 atmosphere, ORCA1_Z75 ocean) compared to the operational SEAS5 is used. The reforecasts are intialised on 01-May and 01-November with 101 ensemble members. The CONFESS project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 101004156. See also: https://www.ecmwf.int/en/elibrary/81330-newsletter-no-174-winter-202223
DOI 10.21957/sd9c-4s37
Experiment ID i14x
Experiment class ECMWF Research Department
Examples

Monthly mean 2m Temperature

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "1993-05-01",
    "expver": "i14x",
    "fcmonth": "1/2/3/4",
    "levtype": "sfc",
    "method": "1",
    "number": "0/to/100",
    "origin": "ecmf",
    "param": "2t",
    "stream": "msmm",
    "system": "5",
    "target": "output_2t.grib",
    "time": "00:00:00",
    "type": "fcmean"
})

Monthly mean Geopotential at 500 hPa

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "1993-05-01",
    "expver": "i14x",
    "fcmonth": "1/2/3/4",
    "levelist": "500",
    "levtype": "pl",
    "method": "1",
    "number": "0/to/100",
    "origin": "ecmf",
    "param": "z",
    "stream": "msmm",
    "system": "5",
    "target": "output_z500.grib",
    "time": "00:00:00",
    "type": "fcmean"
})