# ESMValTool # recipe_mydiag.yml documentation: title: My first recipe description: to calculate the averaged global surface_temperature in recent years, and also the time series for the recent decades, plot the results, save the figures and the calculated data (e.g., the climatology and timeseries) authors: - unmaintained maintainer: - unmaintained datasets: - {dataset: NorESM2-LM, project: CMIP6, mip: Amon, exp: historical, ensemble: r1i1p1f1, grid: gn} - {dataset: EC-Earth3, project: CMIP6, mip: Amon, exp: historical, ensemble: r1i1p1f1, grid: gr} # - {dataset: EC-Earth3, project: CMIP6, mip: Amon, exp: historical, ensemble: r5i1p1f1, grid: gr} preprocessors: mypp_map: regrid: #®rid_setting target_grid: 1x1 scheme: linear climate_statistics: operator: mean period: full convert_units: units: degrees_C mypp_ts: regrid: #<<: *regrid_setting target_grid: 1x1 scheme: linear area_statistics: operator: mean annual_statistics: operator: mean convert_units: units: degrees_C diagnostics: my_maps: description: "my test script 1" variables: tas: short_name: tas preprocessor: mypp_map mip: Amon start_year: 2000 end_year: 2014 scripts: myscript: script: ~/esmvaltool_workshop/mydiag.py timeseries: description: "my test diagnostic script" variables: tas_ts: short_name: tas preprocessor: mypp_ts mip: Amon start_year: 1970 end_year: 2014 scripts: annisscript: script: ~/esmvaltool_workshop/mydiag.py