diff --git a/changelog/380.feature.md b/changelog/380.feature.md new file mode 100644 index 000000000..d0e8fd7b8 --- /dev/null +++ b/changelog/380.feature.md @@ -0,0 +1 @@ +Added regional historical changes diagnostics. diff --git a/conftest.py b/conftest.py index b6f43cc04..ddc2fae48 100644 --- a/conftest.py +++ b/conftest.py @@ -128,7 +128,9 @@ def cmip6_data_catalog(sample_data_dir) -> pd.DataFrame: @pytest.fixture(scope="session") def obs4mips_data_catalog(sample_data_dir) -> pd.DataFrame: adapter = Obs4MIPsDatasetAdapter() - return adapter.find_local_datasets(sample_data_dir / "obs4REF") + obs4ref = adapter.find_local_datasets(sample_data_dir / "obs4REF") + obs4mips = adapter.find_local_datasets(sample_data_dir / "obs4MIPs") + return pd.concat([obs4ref, obs4mips], ignore_index=True) @pytest.fixture(scope="session") diff --git a/packages/climate-ref-core/src/climate_ref_core/diagnostics.py b/packages/climate-ref-core/src/climate_ref_core/diagnostics.py index 5bc57c68d..f2dc33417 100644 --- a/packages/climate-ref-core/src/climate_ref_core/diagnostics.py +++ b/packages/climate-ref-core/src/climate_ref_core/diagnostics.py @@ -508,9 +508,10 @@ class Diagnostic(AbstractDiagnostic): See (climate_ref_example.example.ExampleDiagnostic)[] for an example implementation. """ + series: Sequence[SeriesDefinition] = tuple() + def __init__(self) -> None: super().__init__() - self.series = tuple() self._provider: DiagnosticProvider | None = None def __repr__(self) -> str: diff --git a/packages/climate-ref-core/src/climate_ref_core/metric_values/typing.py b/packages/climate-ref-core/src/climate_ref_core/metric_values/typing.py index 566ae5f22..fbe198b39 100644 --- a/packages/climate-ref-core/src/climate_ref_core/metric_values/typing.py +++ b/packages/climate-ref-core/src/climate_ref_core/metric_values/typing.py @@ -1,7 +1,7 @@ import json from collections.abc import Sequence from pathlib import Path -from typing import Self +from typing import Any, Self from pydantic import BaseModel, model_validator @@ -16,6 +16,9 @@ class SeriesDefinition(BaseModel): file_pattern: str """A glob pattern to match files that contain the series values.""" + sel: dict[str, Any] | None = None + """A dictionary of selection criteria to apply with :meth:`xarray.Dataset.sel` after loading the file.""" + dimensions: dict[str, str] """Key, value pairs that identify the dimensions of the metric.""" diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/__init__.py b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/__init__.py index 06f6c76a2..6ed1dac88 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/__init__.py +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/__init__.py @@ -13,6 +13,11 @@ from climate_ref_esmvaltool.diagnostics.ecs import EquilibriumClimateSensitivity from climate_ref_esmvaltool.diagnostics.enso import ENSOBasicClimatology, ENSOCharacteristics from climate_ref_esmvaltool.diagnostics.example import GlobalMeanTimeseries +from climate_ref_esmvaltool.diagnostics.regional_historical_changes import ( + RegionalHistoricalAnnualCycle, + RegionalHistoricalTimeSeries, + RegionalHistoricalTrend, +) from climate_ref_esmvaltool.diagnostics.sea_ice_area_basic import SeaIceAreaBasic from climate_ref_esmvaltool.diagnostics.sea_ice_sensitivity import SeaIceSensitivity from climate_ref_esmvaltool.diagnostics.tcr import TransientClimateResponse @@ -32,6 +37,9 @@ "ENSOCharacteristics", "EquilibriumClimateSensitivity", "GlobalMeanTimeseries", + "RegionalHistoricalAnnualCycle", + "RegionalHistoricalTimeSeries", + "RegionalHistoricalTrend", "SeaIceAreaBasic", "SeaIceSensitivity", "TransientClimateResponse", diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/base.py b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/base.py index 5b5f0776b..36707dcf9 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/base.py +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/base.py @@ -73,9 +73,9 @@ def format_result( """ return CMECMetric.model_validate(metric_args), CMECOutput.model_validate(output_args) - def build_cmd(self, definition: ExecutionDefinition) -> Iterable[str]: + def write_recipe(self, definition: ExecutionDefinition) -> Path: """ - Build the command to run an ESMValTool recipe. + Update the ESMValTool recipe for the diagnostic and write it to file. Parameters ---------- @@ -85,16 +85,35 @@ def build_cmd(self, definition: ExecutionDefinition) -> Iterable[str]: Returns ------- : - The result of running the diagnostic. + The path to the written recipe. """ - input_files = {project: definition.datasets[project].datasets for project in definition.datasets} + input_files = { + project: dataset_collection.datasets + for project, dataset_collection in definition.datasets.items() + } recipe = load_recipe(self.base_recipe) self.update_recipe(recipe, input_files) recipe_path = definition.to_output_path("recipe.yml") with recipe_path.open("w", encoding="utf-8") as file: yaml.safe_dump(recipe, file, sort_keys=False) + return recipe_path + + def build_cmd(self, definition: ExecutionDefinition) -> Iterable[str]: + """ + Build the command to run an ESMValTool recipe. + Parameters + ---------- + definition + A description of the information needed for this execution of the diagnostic + + Returns + ------- + : + The result of running the diagnostic. + """ + recipe_path = self.write_recipe(definition) climate_data = definition.to_output_path("climate_data") for metric_dataset in definition.datasets.values(): @@ -137,7 +156,7 @@ def build_cmd(self, definition: ExecutionDefinition) -> Iterable[str]: { "OBS": str(data_dir / "OBS"), "OBS6": str(data_dir / "OBS"), - "native6": str(data_dir / "RAWOBS"), + "native6": str(data_dir / "native6"), } ) config["rootpath"]["obs4MIPs"] = [ # type: ignore[index] @@ -180,7 +199,7 @@ def build_execution_result( output_args = CMECOutput.create_template() # Add the plots and data files - default_series_attributes = ( + variable_attributes = ( "long_name", "standard_name", "units", @@ -203,19 +222,29 @@ def build_execution_result( } for series_def in definition.diagnostic.series: if fnmatch.fnmatch(str(relative_path), f"executions/*/{series_def.file_pattern}"): - dataset = xr.open_dataset(filename) + dataset = xr.open_dataset( + filename, decode_times=xr.coders.CFDatetimeCoder(use_cftime=True) + ) + dataset = dataset.sel(series_def.sel) attributes = { attr: dataset.attrs[attr] - for attr in (tuple(series_def.attributes) + default_series_attributes) + for attr in series_def.attributes if attr in dataset.attrs } attributes["caption"] = caption + attributes["values_name"] = series_def.values_name + attributes["index_name"] = series_def.index_name + for attr in variable_attributes: + if attr in dataset[series_def.values_name].attrs: + attributes[f"value_{attr}"] = dataset[series_def.values_name].attrs[attr] + if attr in dataset[series_def.index_name].attrs: + attributes[f"index_{attr}"] = dataset[series_def.index_name].attrs[attr] index = dataset[series_def.index_name].values.tolist() + if hasattr(index[0], "calendar"): + attributes["calendar"] = index[0].calendar if hasattr(index[0], "isoformat"): # Convert time objects to strings. index = [v.isoformat() for v in index] - if hasattr(index[0], "calendar"): - attributes["calendar"] = index[0].calendar series.append( SeriesMetricValue( diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/regional_historical_changes.py b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/regional_historical_changes.py new file mode 100644 index 000000000..878d4d442 --- /dev/null +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/regional_historical_changes.py @@ -0,0 +1,340 @@ +import copy +from pathlib import Path + +import numpy as np +import pandas +import xarray + +from climate_ref_core.constraints import ( + AddSupplementaryDataset, + RequireContiguousTimerange, + RequireFacets, +) +from climate_ref_core.datasets import ExecutionDatasetCollection, FacetFilter, SourceDatasetType +from climate_ref_core.diagnostics import DataRequirement +from climate_ref_core.metric_values.typing import SeriesDefinition +from climate_ref_core.pycmec.metric import CMECMetric, MetricCV +from climate_ref_core.pycmec.output import CMECOutput +from climate_ref_esmvaltool.diagnostics.base import ESMValToolDiagnostic +from climate_ref_esmvaltool.recipe import dataframe_to_recipe +from climate_ref_esmvaltool.types import MetricBundleArgs, OutputBundleArgs, Recipe + +REGIONS = ( + "Arabian-Peninsula", + "Arabian-Sea", + "Arctic-Ocean", + "Bay-of-Bengal", + "C.Australia", + "C.North-America", + "Caribbean", + "Central-Africa", + "E.Antarctica", + "E.Asia", + "E.Australia", + "E.C.Asia", + "E.Europe", + "E.North-America", + "E.Siberia", + "E.Southern-Africa", + "Equatorial.Atlantic-Ocean", + "Equatorial.Indic-Ocean", + "Equatorial.Pacific-Ocean", + "Greenland/Iceland", + "Madagascar", + "Mediterranean", + "N.Atlantic-Ocean", + "N.Australia", + "N.Central-America", + "N.E.North-America", + "N.E.South-America", + "N.Eastern-Africa", + "N.Europe", + "N.Pacific-Ocean", + "N.South-America", + "N.W.North-America", + "N.W.South-America", + "New-Zealand", + "Russian-Arctic", + "Russian-Far-East", + "S.Asia", + "S.Atlantic-Ocean", + "S.Australia", + "S.Central-America", + "S.E.Asia", + "S.E.South-America", + "S.Eastern-Africa", + "S.Indic-Ocean", + "S.Pacific-Ocean", + "S.South-America", + "S.W.South-America", + "Sahara", + "South-American-Monsoon", + "Southern-Ocean", + "Tibetan-Plateau", + "W.Antarctica", + "W.C.Asia", + "W.North-America", + "W.Siberia", + "W.Southern-Africa", + "West&Central-Europe", + "Western-Africa", +) + + +def normalize_region(region: str) -> str: + """Normalize region name so it can be used in filenames.""" + return region.replace("&", "-and-").replace("/", "-and-") + + +class RegionalHistoricalAnnualCycle(ESMValToolDiagnostic): + """ + Plot regional historical annual cycle of climate variables. + """ + + name = "Regional historical annual cycle of climate variables" + slug = "regional-historical-annual-cycle" + base_recipe = "ref/recipe_ref_annual_cycle_region.yml" + + variables = ( + "hus", + "pr", + "psl", + "tas", + "ua", + ) + series = tuple( + SeriesDefinition( + file_pattern=f"anncyc-{region}/allplots/*_{var_name}_*.nc", + sel={"dim0": 0}, # Select the model and not the observation. + dimensions={"region": region}, + values_name=var_name, + index_name="month_number", + attributes=[], + ) + for var_name in variables + for region in REGIONS + ) + + data_requirements = ( + DataRequirement( + source_type=SourceDatasetType.CMIP6, + filters=( + FacetFilter( + facets={ + "variable_id": variables, + "experiment_id": "historical", + "frequency": "mon", + }, + ), + ), + group_by=("source_id", "member_id", "grid_label"), + constraints=( + RequireFacets("variable_id", variables), + RequireContiguousTimerange(group_by=("instance_id",)), + AddSupplementaryDataset.from_defaults("areacella", SourceDatasetType.CMIP6), + ), + ), + DataRequirement( + source_type=SourceDatasetType.obs4MIPs, + filters=( + FacetFilter( + facets={ + "variable_id": ( + "psl", + "ua", + ), + "source_id": "ERA-5", + "frequency": "mon", + }, + ), + ), + group_by=("source_id",), + constraints=(RequireContiguousTimerange(group_by=("instance_id",)),), + # TODO: Add obs4MIPs datasets once available and working: + # + # obs4MIPs dataset that cannot be ingested (https://github.com/Climate-REF/climate-ref/issues/260): + # - GPCP-V2.3: pr + # + # Not yet available on obs4MIPs: + # - ERA5: hus + # - HadCRUT5_ground_5.0.1.0-analysis: tas + ), + ) + facets = () + + @staticmethod + def update_recipe( + recipe: Recipe, + input_files: dict[SourceDatasetType, pandas.DataFrame], + ) -> None: + """Update the recipe.""" + # Update the dataset. + recipe_variables = dataframe_to_recipe(input_files[SourceDatasetType.CMIP6]) + dataset = recipe_variables["hus"]["additional_datasets"][0] + dataset.pop("timerange") + dataset["benchmark_dataset"] = True + dataset["plot_label"] = "{dataset}.{ensemble}.{grid}".format(**dataset) + recipe["datasets"] = [dataset] + + # Generate diagnostics for each region. + diagnostics = {} + for region in REGIONS: + for diagnostic_name, orig_diagnostic in recipe["diagnostics"].items(): + # Create the diagnostic for the region. + diagnostic = copy.deepcopy(orig_diagnostic) + normalized_region = normalize_region(region) + diagnostics[f"{diagnostic_name}-{normalized_region}"] = diagnostic + + for variable in diagnostic["variables"].values(): + # Remove unwanted facets that are part of the dataset. + for facet in ("project", "exp", "ensemble", "grid"): + variable.pop(facet, None) + # Update the preprocessor so it extracts the region. + preprocessor_name = variable["preprocessor"] + preprocessor = copy.deepcopy(recipe["preprocessors"][preprocessor_name]) + preprocessor["extract_shape"]["ids"] = {"Name": [region]} + variable["preprocessor"] = f"{preprocessor_name}-{normalized_region}" + recipe["preprocessors"][variable["preprocessor"]] = preprocessor + + # Update plot titles with region name. + for script in diagnostic["scripts"].values(): + for plot in script["plots"].values(): + plot["pyplot_kwargs"] = {"title": f"{{long_name}} {region}"} + recipe["diagnostics"] = diagnostics + + +class RegionalHistoricalTimeSeries(RegionalHistoricalAnnualCycle): + """ + Plot regional historical mean and anomaly of climate variables. + """ + + name = "Regional historical mean and anomaly of climate variables" + slug = "regional-historical-timeseries" + base_recipe = "ref/recipe_ref_timeseries_region.yml" + series = tuple( + SeriesDefinition( + file_pattern=f"{diagnostic}-{region}/allplots/*_{var_name}_*.nc", + sel={"dim0": 0}, # Select the model and not the observation. + dimensions={"region": region}, + values_name=var_name, + index_name="time", + attributes=[], + ) + for var_name in RegionalHistoricalAnnualCycle.variables + for region in REGIONS + for diagnostic in ["timeseries_abs", "timeseries"] + ) + + +class RegionalHistoricalTrend(ESMValToolDiagnostic): + """ + Plot regional historical trend of climate variables. + """ + + name = "Regional historical trend of climate variables" + slug = "regional-historical-trend" + base_recipe = "ref/recipe_ref_trend_regions.yml" + + data_requirements = ( + DataRequirement( + source_type=SourceDatasetType.CMIP6, + filters=( + FacetFilter( + facets={ + "variable_id": ( + "hus", + "pr", + "psl", + "tas", + "ua", + ), + "experiment_id": "historical", + "frequency": "mon", + }, + ), + ), + group_by=("source_id", "member_id", "grid_label"), + constraints=( + RequireContiguousTimerange(group_by=("instance_id",)), + AddSupplementaryDataset.from_defaults("areacella", SourceDatasetType.CMIP6), + ), + ), + DataRequirement( + source_type=SourceDatasetType.obs4MIPs, + filters=( + FacetFilter( + facets={ + "variable_id": ( + "psl", + "tas", + "ua", + ), + "source_id": "ERA-5", + "frequency": "mon", + }, + ), + ), + group_by=("source_id",), + constraints=(RequireContiguousTimerange(group_by=("instance_id",)),), + # TODO: Add obs4MIPs datasets once available and working: + # + # obs4MIPs dataset that cannot be ingested (https://github.com/Climate-REF/climate-ref/issues/260): + # - GPCP-V2.3: pr + # + # Not yet available on obs4MIPs: + # - ERA5: hus + # - HadCRUT5_ground_5.0.1.0-analysis: tas + ), + ) + facets = ("grid_label", "member_id", "source_id", "variable_id", "region", "metric") + + @staticmethod + def update_recipe( + recipe: Recipe, + input_files: dict[SourceDatasetType, pandas.DataFrame], + ) -> None: + """Update the recipe.""" + recipe["datasets"] = [] + recipe_variables = dataframe_to_recipe(input_files[SourceDatasetType.CMIP6]) + diagnostics = {} + for diagnostic_name, diagnostic in recipe["diagnostics"].items(): + for variable_name, variable in diagnostic["variables"].items(): + if variable_name not in recipe_variables: + continue + dataset = recipe_variables[variable_name]["additional_datasets"][0] + dataset.pop("timerange") + variable["additional_datasets"].append(dataset) + diagnostics[diagnostic_name] = diagnostic + recipe["diagnostics"] = diagnostics + + @classmethod + def format_result( + cls, + result_dir: Path, + execution_dataset: ExecutionDatasetCollection, + metric_args: MetricBundleArgs, + output_args: OutputBundleArgs, + ) -> tuple[CMECMetric, CMECOutput]: + """Format the result.""" + metric_args[MetricCV.DIMENSIONS.value] = { + "json_structure": ["variable_id", "region", "metric"], + "variable_id": {}, + "region": {}, + "metric": {"trend": {}}, + } + for file in result_dir.glob("work/*_trends/plot/seaborn_barplot.nc"): + ds = xarray.open_dataset(file) + source_id = execution_dataset[SourceDatasetType.CMIP6].source_id.iloc[0] + select = source_id == np.array([s.strip() for s in ds.dataset.values.astype(str).tolist()]) + ds.isel(dim0=select) + variable_id = next(iter(ds.data_vars.keys())) + metric_args[MetricCV.DIMENSIONS.value]["variable_id"][variable_id] = {} + metric_args[MetricCV.RESULTS.value][variable_id] = {} + for region_value, trend_value in zip(ds.shape_id.astype(str).values, ds[variable_id].values): + region = region_value.strip() + trend = float(trend_value) + if region not in metric_args[MetricCV.DIMENSIONS.value]["region"]: + metric_args[MetricCV.DIMENSIONS.value]["region"][region] = {} + metric_args[MetricCV.RESULTS.value][variable_id][region] = {"trend": trend} + + return CMECMetric.model_validate(metric_args), CMECOutput.model_validate(output_args) diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py index fad15bd7e..54d85a32a 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py @@ -169,7 +169,16 @@ def load_recipe(recipe: str) -> Recipe: The loaded recipe. """ filename = _RECIPES.fetch(recipe) - return yaml.safe_load(Path(filename).read_text(encoding="utf-8")) # type: ignore[no-any-return] + + def normalize(obj: Any) -> Any: + # Ensure objects in the recipe are not shared. + if isinstance(obj, dict): + return {k: normalize(v) for k, v in obj.items()} + if isinstance(obj, list): + return [normalize(item) for item in obj] + return obj + + return normalize(yaml.safe_load(Path(filename).read_text(encoding="utf-8"))) # type: ignore[no-any-return] def prepare_climate_data(datasets: pd.DataFrame, climate_data_dir: Path) -> None: @@ -192,12 +201,11 @@ def prepare_climate_data(datasets: pd.DataFrame, climate_data_dir: Path) -> None if not isinstance(row.path, str): # pragma: no branch msg = f"Invalid path encountered in {row}" raise ValueError(msg) - project = row.instance_id.split(".")[0] - if project == "obs4MIPs": + if row.instance_id.startswith("obs4MIPs."): version = row.instance_id.split(".")[-1] - tgt = climate_data_dir / project / row.source_id / version # type: ignore[operator] + subdirs: list[str] = ["obs4MIPs", row.source_id, version] # type: ignore[list-item] else: - tgt = climate_data_dir.joinpath(*row.instance_id.split(".")) - tgt /= Path(row.path).name + subdirs = row.instance_id.split(".") + tgt = climate_data_dir.joinpath(*subdirs) / Path(row.path).name tgt.parent.mkdir(parents=True, exist_ok=True) tgt.symlink_to(row.path) diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt index 0d9bd0816..9d26a8a03 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt @@ -7,7 +7,10 @@ recipe_tcre.yml 48fc9e3baf541bbcef7491853ea3a7740537 recipe_zec.yml b0af7f789b7610ab3f29a6617124aa40c40866ead958204fc199eaf82863de51 ref/recipe_enso_basicclimatology.yml 9ea7deb7ee668e39ac44618b96496d898bd82285c22dcee4fce4695e0c9fa82b ref/recipe_enso_characteristics.yml 34c2518b138068ac96d212910b979d54a8fcedee2c0089b5acd56a42c41dc3e4 +ref/recipe_ref_annual_cycle_region.yml 64ebc687789dad6c45a2361b45218cb5a0ad0e38c516840c65fc7e8bf7b5ace7 ref/recipe_ref_cre.yml 4375f262479c3b3e1b348b71080a6d758e195bda76516a591182045a3a29aa32 ref/recipe_ref_fire.yml 2ad82effaca4e742d8abe6a0aa07bb46e1e92ef0d2d240760f7623b0ba045926 ref/recipe_ref_sea_ice_area_basic.yml 7d01a8527880663ca28284772f83a8356d9972fb4f022a4000e50a56ce044b09 ref/recipe_ref_scatterplot.yml b99d1736e16256d161847b025811d7088ad9f892d4887fb009fa99c4079135a0 +ref/recipe_ref_timeseries_region.yml 86f36e442021caba201601d8cf4624f8ce6715ce421670a467c792db2910db22 +ref/recipe_ref_trend_regions.yml 18fe246a51474bd12172ab1ba141efac999a247de7774822f77ae6ef144645fe diff --git a/packages/climate-ref-esmvaltool/tests/integration/test_diagnostics.py b/packages/climate-ref-esmvaltool/tests/integration/test_diagnostics.py index aaa6fd60b..de9f5d0aa 100644 --- a/packages/climate-ref-esmvaltool/tests/integration/test_diagnostics.py +++ b/packages/climate-ref-esmvaltool/tests/integration/test_diagnostics.py @@ -3,7 +3,22 @@ from climate_ref_core.diagnostics import Diagnostic -diagnostics = [pytest.param(diagnostic, id=diagnostic.slug) for diagnostic in provider.diagnostics()] +SKIP = { + "regional-historical-annual-cycle", + "regional-historical-timeseries", +} + +diagnostics = [ + pytest.param( + diagnostic, + id=diagnostic.slug, + marks=pytest.mark.skipif( + diagnostic.slug in SKIP, + reason="Output data too large to store in git", + ), + ) + for diagnostic in provider.diagnostics() +] @pytest.mark.slow diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_climate_at_global_warming_levels.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_climate_at_global_warming_levels.json deleted file mode 100644 index d92717ace..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_climate_at_global_warming_levels.json +++ /dev/null @@ -1,1371 +0,0 @@ -[ - { - "start_time":"2015-01-16T00:00:00.000", - "end_time":"2049-12-16T00:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/MOHC\/UKESM1-0-LL\/ssp126\/r1i1p1f2\/Amon\/tas\/gn\/v20190503\/tas_Amon_UKESM1-0-LL_ssp126_r1i1p1f2_gn_201501-204912.nc", - "activity_id":"ScenarioMIP", - "branch_method":"standard", - "branch_time_in_child":59400.0, - "branch_time_in_parent":59400.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"Native N96 grid; 192 x 144 longitude\/latitude", - "grid_label":"gn", - "institution_id":"MOHC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"UKESM1-0-LL", - "parent_time_units":"days since 1850-01-01-00-00-00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"UKESM1-0-LL", - "source_type":"AOGCM AER BGC CHEM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190503", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.ScenarioMIP.MOHC.UKESM1-0-LL.ssp126.r1i1p1f2.Amon.tas.gn.v20190503" - }, - { - "start_time":"2050-01-16T00:00:00.000", - "end_time":"2100-12-16T00:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/MOHC\/UKESM1-0-LL\/ssp126\/r1i1p1f2\/Amon\/tas\/gn\/v20190503\/tas_Amon_UKESM1-0-LL_ssp126_r1i1p1f2_gn_205001-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"standard", - "branch_time_in_child":59400.0, - "branch_time_in_parent":59400.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"Native N96 grid; 192 x 144 longitude\/latitude", - "grid_label":"gn", - "institution_id":"MOHC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"UKESM1-0-LL", - "parent_time_units":"days since 1850-01-01-00-00-00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"UKESM1-0-LL", - "source_type":"AOGCM AER BGC CHEM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190503", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.ScenarioMIP.MOHC.UKESM1-0-LL.ssp126.r1i1p1f2.Amon.tas.gn.v20190503" - }, - { - "start_time":"2015-01-16T00:00:00.000", - "end_time":"2049-12-16T00:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/MOHC\/UKESM1-0-LL\/ssp126\/r1i1p1f2\/Amon\/pr\/gn\/v20190503\/pr_Amon_UKESM1-0-LL_ssp126_r1i1p1f2_gn_201501-204912.nc", - "activity_id":"ScenarioMIP", - "branch_method":"standard", - "branch_time_in_child":59400.0, - "branch_time_in_parent":59400.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"Native N96 grid; 192 x 144 longitude\/latitude", - "grid_label":"gn", - "institution_id":"MOHC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"UKESM1-0-LL", - "parent_time_units":"days since 1850-01-01-00-00-00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"UKESM1-0-LL", - "source_type":"AOGCM AER BGC CHEM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190503", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.ScenarioMIP.MOHC.UKESM1-0-LL.ssp126.r1i1p1f2.Amon.pr.gn.v20190503" - }, - { - "start_time":"2050-01-16T00:00:00.000", - "end_time":"2100-12-16T00:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/MOHC\/UKESM1-0-LL\/ssp126\/r1i1p1f2\/Amon\/pr\/gn\/v20190503\/pr_Amon_UKESM1-0-LL_ssp126_r1i1p1f2_gn_205001-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"standard", - "branch_time_in_child":59400.0, - "branch_time_in_parent":59400.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"Native N96 grid; 192 x 144 longitude\/latitude", - "grid_label":"gn", - "institution_id":"MOHC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"UKESM1-0-LL", - "parent_time_units":"days since 1850-01-01-00-00-00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"UKESM1-0-LL", - "source_type":"AOGCM AER BGC CHEM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190503", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.ScenarioMIP.MOHC.UKESM1-0-LL.ssp126.r1i1p1f2.Amon.pr.gn.v20190503" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/MIROC\/MIROC6\/ssp126\/r1i1p1f1\/Amon\/tas\/gn\/v20190627\/tas_Amon_MIROC6_ssp126_r1i1p1f1_gn_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"standard", - "branch_time_in_child":60265.0, - "branch_time_in_parent":60265.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"native atmosphere T85 Gaussian grid", - "grid_label":"gn", - "institution_id":"MIROC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"MIROC6", - "parent_time_units":"days since 1850-1-1", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MIROC6", - "source_type":"AOGCM AER", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190627", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.ScenarioMIP.MIROC.MIROC6.ssp126.r1i1p1f1.Amon.tas.gn.v20190627" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/MIROC\/MIROC6\/ssp126\/r1i1p1f1\/Amon\/pr\/gn\/v20190627\/pr_Amon_MIROC6_ssp126_r1i1p1f1_gn_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"standard", - "branch_time_in_child":60265.0, - "branch_time_in_parent":60265.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"native atmosphere T85 Gaussian grid", - "grid_label":"gn", - "institution_id":"MIROC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"MIROC6", - "parent_time_units":"days since 1850-1-1", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MIROC6", - "source_type":"AOGCM AER", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190627", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.ScenarioMIP.MIROC.MIROC6.ssp126.r1i1p1f1.Amon.pr.gn.v20190627" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/CNRM-CERFACS\/CNRM-CM6-1\/ssp126\/r1i1p1f2\/Amon\/tas\/gr\/v20190219\/tas_Amon_CNRM-CM6-1_ssp126_r1i1p1f2_gr_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"standard", - "branch_time_in_child":60265.0, - "branch_time_in_parent":60265.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid", - "grid_label":"gr", - "institution_id":"CNRM-CERFACS", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"CNRM-CM6-1", - "parent_time_units":"days since 1850-01-01 00:00:00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"CNRM-CM6-1", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190219", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.ScenarioMIP.CNRM-CERFACS.CNRM-CM6-1.ssp126.r1i1p1f2.Amon.tas.gr.v20190219" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/CNRM-CERFACS\/CNRM-CM6-1\/ssp126\/r1i1p1f2\/Amon\/pr\/gr\/v20190219\/pr_Amon_CNRM-CM6-1_ssp126_r1i1p1f2_gr_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"standard", - "branch_time_in_child":60265.0, - "branch_time_in_parent":60265.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid", - "grid_label":"gr", - "institution_id":"CNRM-CERFACS", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"CNRM-CM6-1", - "parent_time_units":"days since 1850-01-01 00:00:00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"CNRM-CM6-1", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190219", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.ScenarioMIP.CNRM-CERFACS.CNRM-CM6-1.ssp126.r1i1p1f2.Amon.pr.gr.v20190219" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/CCCma\/CanESM5\/ssp126\/r1i1p1f1\/Amon\/tas\/gn\/v20190429\/tas_Amon_CanESM5_ssp126_r1i1p1f1_gn_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":60225.0, - "branch_time_in_parent":60225.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude\/latitude; 49 levels; top level 1 hPa", - "grid_label":"gn", - "institution_id":"CCCma", - "nominal_resolution":"500 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"CanESM5", - "parent_time_units":"days since 1850-01-01 0:0:0.0", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"CanESM5", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190429", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.ScenarioMIP.CCCma.CanESM5.ssp126.r1i1p1f1.Amon.tas.gn.v20190429" - }, - { - "start_time":"2101-01-16T12:00:00.000", - "end_time":"2300-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/CCCma\/CanESM5\/ssp126\/r1i1p1f1\/Amon\/tas\/gn\/v20190429\/tas_Amon_CanESM5_ssp126_r1i1p1f1_gn_210101-230012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":60225.0, - "branch_time_in_parent":60225.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude\/latitude; 49 levels; top level 1 hPa", - "grid_label":"gn", - "institution_id":"CCCma", - "nominal_resolution":"500 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"CanESM5", - "parent_time_units":"days since 1850-01-01 0:0:0.0", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"CanESM5", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190429", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.ScenarioMIP.CCCma.CanESM5.ssp126.r1i1p1f1.Amon.tas.gn.v20190429" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/CCCma\/CanESM5\/ssp126\/r1i1p1f1\/Amon\/pr\/gn\/v20190429\/pr_Amon_CanESM5_ssp126_r1i1p1f1_gn_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":60225.0, - "branch_time_in_parent":60225.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude\/latitude; 49 levels; top level 1 hPa", - "grid_label":"gn", - "institution_id":"CCCma", - "nominal_resolution":"500 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"CanESM5", - "parent_time_units":"days since 1850-01-01 0:0:0.0", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"CanESM5", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190429", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.ScenarioMIP.CCCma.CanESM5.ssp126.r1i1p1f1.Amon.pr.gn.v20190429" - }, - { - "start_time":"2101-01-16T12:00:00.000", - "end_time":"2300-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/CCCma\/CanESM5\/ssp126\/r1i1p1f1\/Amon\/pr\/gn\/v20190429\/pr_Amon_CanESM5_ssp126_r1i1p1f1_gn_210101-230012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":60225.0, - "branch_time_in_parent":60225.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude\/latitude; 49 levels; top level 1 hPa", - "grid_label":"gn", - "institution_id":"CCCma", - "nominal_resolution":"500 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"CanESM5", - "parent_time_units":"days since 1850-01-01 0:0:0.0", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"CanESM5", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190429", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.ScenarioMIP.CCCma.CanESM5.ssp126.r1i1p1f1.Amon.pr.gn.v20190429" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/CAS\/FGOALS-f3-L\/ssp126\/r1i1p1f1\/Amon\/tas\/gr\/v20191013\/tas_Amon_FGOALS-f3-L_ssp126_r1i1p1f1_gr_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":2310.0, - "branch_time_in_parent":12345.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"gs1x1", - "grid_label":"gr", - "institution_id":"CAS", - "nominal_resolution":"100 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"FGOALS-f3-L", - "parent_time_units":"days since 0001-01-01", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"FGOALS-f3-L", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20191013", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.ScenarioMIP.CAS.FGOALS-f3-L.ssp126.r1i1p1f1.Amon.tas.gr.v20191013" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/CAS\/FGOALS-f3-L\/ssp126\/r1i1p1f1\/Amon\/pr\/gr\/v20191013\/pr_Amon_FGOALS-f3-L_ssp126_r1i1p1f1_gr_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":2310.0, - "branch_time_in_parent":12345.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"gs1x1", - "grid_label":"gr", - "institution_id":"CAS", - "nominal_resolution":"100 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"FGOALS-f3-L", - "parent_time_units":"days since 0001-01-01", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"FGOALS-f3-L", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20191013", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.ScenarioMIP.CAS.FGOALS-f3-L.ssp126.r1i1p1f1.Amon.pr.gr.v20191013" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/BCC\/BCC-CSM2-MR\/ssp126\/r1i1p1f1\/Amon\/tas\/gn\/v20190314\/tas_Amon_BCC-CSM2-MR_ssp126_r1i1p1f1_gn_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"Standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":2015.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"T106", - "grid_label":"gn", - "institution_id":"BCC", - "nominal_resolution":"100 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"BCC-CSM2-MR", - "parent_time_units":"days since 2015-01-01", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"BCC-CSM2-MR", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190314", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.ScenarioMIP.BCC.BCC-CSM2-MR.ssp126.r1i1p1f1.Amon.tas.gn.v20190314" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2100-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/ScenarioMIP\/BCC\/BCC-CSM2-MR\/ssp126\/r1i1p1f1\/Amon\/pr\/gn\/v20190314\/pr_Amon_BCC-CSM2-MR_ssp126_r1i1p1f1_gn_201501-210012.nc", - "activity_id":"ScenarioMIP", - "branch_method":"Standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":2015.0, - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "frequency":"mon", - "grid":"T106", - "grid_label":"gn", - "institution_id":"BCC", - "nominal_resolution":"100 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"BCC-CSM2-MR", - "parent_time_units":"days since 2015-01-01", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"BCC-CSM2-MR", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190314", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.ScenarioMIP.BCC.BCC-CSM2-MR.ssp126.r1i1p1f1.Amon.pr.gn.v20190314" - }, - { - "start_time":"1850-01-16T00:00:00.000", - "end_time":"1949-12-16T00:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MOHC\/UKESM1-0-LL\/historical\/r1i1p1f2\/Amon\/tas\/gn\/v20190406\/tas_Amon_UKESM1-0-LL_historical_r1i1p1f2_gn_185001-194912.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":144000.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"Native N96 grid; 192 x 144 longitude\/latitude", - "grid_label":"gn", - "institution_id":"MOHC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"UKESM1-0-LL", - "parent_time_units":"days since 1850-01-01-00-00-00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"UKESM1-0-LL", - "source_type":"AOGCM AER BGC CHEM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190406", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.CMIP.MOHC.UKESM1-0-LL.historical.r1i1p1f2.Amon.tas.gn.v20190406" - }, - { - "start_time":"1950-01-16T00:00:00.000", - "end_time":"2014-12-16T00:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MOHC\/UKESM1-0-LL\/historical\/r1i1p1f2\/Amon\/tas\/gn\/v20190406\/tas_Amon_UKESM1-0-LL_historical_r1i1p1f2_gn_195001-201412.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":144000.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"Native N96 grid; 192 x 144 longitude\/latitude", - "grid_label":"gn", - "institution_id":"MOHC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"UKESM1-0-LL", - "parent_time_units":"days since 1850-01-01-00-00-00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"UKESM1-0-LL", - "source_type":"AOGCM AER BGC CHEM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190406", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.CMIP.MOHC.UKESM1-0-LL.historical.r1i1p1f2.Amon.tas.gn.v20190406" - }, - { - "start_time":"1850-01-16T00:00:00.000", - "end_time":"1949-12-16T00:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MOHC\/UKESM1-0-LL\/historical\/r1i1p1f2\/Amon\/pr\/gn\/v20190406\/pr_Amon_UKESM1-0-LL_historical_r1i1p1f2_gn_185001-194912.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":144000.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"Native N96 grid; 192 x 144 longitude\/latitude", - "grid_label":"gn", - "institution_id":"MOHC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"UKESM1-0-LL", - "parent_time_units":"days since 1850-01-01-00-00-00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"UKESM1-0-LL", - "source_type":"AOGCM AER BGC CHEM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190406", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.CMIP.MOHC.UKESM1-0-LL.historical.r1i1p1f2.Amon.pr.gn.v20190406" - }, - { - "start_time":"1950-01-16T00:00:00.000", - "end_time":"2014-12-16T00:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MOHC\/UKESM1-0-LL\/historical\/r1i1p1f2\/Amon\/pr\/gn\/v20190406\/pr_Amon_UKESM1-0-LL_historical_r1i1p1f2_gn_195001-201412.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":144000.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"Native N96 grid; 192 x 144 longitude\/latitude", - "grid_label":"gn", - "institution_id":"MOHC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"UKESM1-0-LL", - "parent_time_units":"days since 1850-01-01-00-00-00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"UKESM1-0-LL", - "source_type":"AOGCM AER BGC CHEM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190406", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.CMIP.MOHC.UKESM1-0-LL.historical.r1i1p1f2.Amon.pr.gn.v20190406" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"1949-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MIROC\/MIROC6\/historical\/r1i1p1f1\/Amon\/tas\/gn\/v20181212\/tas_Amon_MIROC6_historical_r1i1p1f1_gn_185001-194912.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"native atmosphere T85 Gaussian grid", - "grid_label":"gn", - "institution_id":"MIROC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"MIROC6", - "parent_time_units":"days since 3200-1-1", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MIROC6", - "source_type":"AOGCM AER", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20181212", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.CMIP.MIROC.MIROC6.historical.r1i1p1f1.Amon.tas.gn.v20181212" - }, - { - "start_time":"1950-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MIROC\/MIROC6\/historical\/r1i1p1f1\/Amon\/tas\/gn\/v20181212\/tas_Amon_MIROC6_historical_r1i1p1f1_gn_195001-201412.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"native atmosphere T85 Gaussian grid", - "grid_label":"gn", - "institution_id":"MIROC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"MIROC6", - "parent_time_units":"days since 3200-1-1", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MIROC6", - "source_type":"AOGCM AER", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20181212", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.CMIP.MIROC.MIROC6.historical.r1i1p1f1.Amon.tas.gn.v20181212" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"1949-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MIROC\/MIROC6\/historical\/r1i1p1f1\/Amon\/pr\/gn\/v20181212\/pr_Amon_MIROC6_historical_r1i1p1f1_gn_185001-194912.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"native atmosphere T85 Gaussian grid", - "grid_label":"gn", - "institution_id":"MIROC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"MIROC6", - "parent_time_units":"days since 3200-1-1", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MIROC6", - "source_type":"AOGCM AER", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20181212", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.CMIP.MIROC.MIROC6.historical.r1i1p1f1.Amon.pr.gn.v20181212" - }, - { - "start_time":"1950-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MIROC\/MIROC6\/historical\/r1i1p1f1\/Amon\/pr\/gn\/v20181212\/pr_Amon_MIROC6_historical_r1i1p1f1_gn_195001-201412.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"native atmosphere T85 Gaussian grid", - "grid_label":"gn", - "institution_id":"MIROC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"MIROC6", - "parent_time_units":"days since 3200-1-1", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MIROC6", - "source_type":"AOGCM AER", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20181212", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.CMIP.MIROC.MIROC6.historical.r1i1p1f1.Amon.pr.gn.v20181212" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CNRM-CERFACS\/CNRM-CM6-1\/historical\/r1i1p1f2\/Amon\/tas\/gr\/v20180917\/tas_Amon_CNRM-CM6-1_historical_r1i1p1f2_gr_185001-201412.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid", - "grid_label":"gr", - "institution_id":"CNRM-CERFACS", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"CNRM-CM6-1", - "parent_time_units":"days since 1850-01-01 00:00:00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"CNRM-CM6-1", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20180917", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.CMIP.CNRM-CERFACS.CNRM-CM6-1.historical.r1i1p1f2.Amon.tas.gr.v20180917" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CNRM-CERFACS\/CNRM-CM6-1\/historical\/r1i1p1f2\/Amon\/pr\/gr\/v20180917\/pr_Amon_CNRM-CM6-1_historical_r1i1p1f2_gr_185001-201412.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid", - "grid_label":"gr", - "institution_id":"CNRM-CERFACS", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"CNRM-CM6-1", - "parent_time_units":"days since 1850-01-01 00:00:00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"CNRM-CM6-1", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20180917", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.CMIP.CNRM-CERFACS.CNRM-CM6-1.historical.r1i1p1f2.Amon.pr.gr.v20180917" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CCCma\/CanESM5\/historical\/r1i1p1f1\/Amon\/tas\/gn\/v20190429\/tas_Amon_CanESM5_historical_r1i1p1f1_gn_185001-201412.nc", - "activity_id":"CMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":0.0, - "branch_time_in_parent":1223115.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude\/latitude; 49 levels; top level 1 hPa", - "grid_label":"gn", - "institution_id":"CCCma", - "nominal_resolution":"500 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"CanESM5", - "parent_time_units":"days since 1850-01-01 0:0:0.0", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"CanESM5", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190429", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.CMIP.CCCma.CanESM5.historical.r1i1p1f1.Amon.tas.gn.v20190429" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CCCma\/CanESM5\/historical\/r1i1p1f1\/Amon\/pr\/gn\/v20190429\/pr_Amon_CanESM5_historical_r1i1p1f1_gn_185001-201412.nc", - "activity_id":"CMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":0.0, - "branch_time_in_parent":1223115.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude\/latitude; 49 levels; top level 1 hPa", - "grid_label":"gn", - "institution_id":"CCCma", - "nominal_resolution":"500 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"CanESM5", - "parent_time_units":"days since 1850-01-01 0:0:0.0", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"CanESM5", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190429", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.CMIP.CCCma.CanESM5.historical.r1i1p1f1.Amon.pr.gn.v20190429" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CAS\/FGOALS-f3-L\/historical\/r1i1p1f1\/Amon\/tas\/gr\/v20190927\/tas_Amon_FGOALS-f3-L_historical_r1i1p1f1_gr_185001-201412.nc", - "activity_id":"CMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":2310.0, - "branch_time_in_parent":12345.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"gs1x1", - "grid_label":"gr", - "institution_id":"CAS", - "nominal_resolution":"100 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"FGOALS-f3-L", - "parent_time_units":"days since 0001-01-01", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"FGOALS-f3-L", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190927", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.CMIP.CAS.FGOALS-f3-L.historical.r1i1p1f1.Amon.tas.gr.v20190927" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CAS\/FGOALS-f3-L\/historical\/r1i1p1f1\/Amon\/pr\/gr\/v20190927\/pr_Amon_FGOALS-f3-L_historical_r1i1p1f1_gr_185001-201412.nc", - "activity_id":"CMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":2310.0, - "branch_time_in_parent":12345.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"gs1x1", - "grid_label":"gr", - "institution_id":"CAS", - "nominal_resolution":"100 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"FGOALS-f3-L", - "parent_time_units":"days since 0001-01-01", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"FGOALS-f3-L", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190927", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.CMIP.CAS.FGOALS-f3-L.historical.r1i1p1f1.Amon.pr.gr.v20190927" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/BCC\/BCC-CSM2-MR\/historical\/r1i1p1f1\/Amon\/tas\/gn\/v20181126\/tas_Amon_BCC-CSM2-MR_historical_r1i1p1f1_gn_185001-201412.nc", - "activity_id":"CMIP", - "branch_method":"Standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":2289.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"T106", - "grid_label":"gn", - "institution_id":"BCC", - "nominal_resolution":"100 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"BCC-CSM2-MR", - "parent_time_units":"days since 1850-01-01", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"BCC-CSM2-MR", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20181126", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "instance_id":"CMIP6.CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f1.Amon.tas.gn.v20181126" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/BCC\/BCC-CSM2-MR\/historical\/r1i1p1f1\/Amon\/pr\/gn\/v20181126\/pr_Amon_BCC-CSM2-MR_historical_r1i1p1f1_gn_185001-201412.nc", - "activity_id":"CMIP", - "branch_method":"Standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":2289.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"mon", - "grid":"T106", - "grid_label":"gn", - "institution_id":"BCC", - "nominal_resolution":"100 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"BCC-CSM2-MR", - "parent_time_units":"days since 1850-01-01", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"BCC-CSM2-MR", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"pr", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20181126", - "standard_name":"precipitation_flux", - "long_name":"Precipitation", - "units":"kg m-2 s-1", - "instance_id":"CMIP6.CMIP.BCC.BCC-CSM2-MR.historical.r1i1p1f1.Amon.pr.gn.v20181126" - }, - { - "start_time":null, - "end_time":null, - "path":"\/home\/bandela\/climate_data\/CMIP6\/GMMIP\/BCC\/BCC-CSM2-MR\/hist-resIPO\/r1i1p1f1\/fx\/areacella\/gn\/v20190613\/areacella_fx_BCC-CSM2-MR_hist-resIPO_r1i1p1f1_gn.nc", - "activity_id":"GMMIP", - "branch_method":"Standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"initialized from \"historical\" run year 1870 and SSTs in tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW) restored to AMIP SSTs with historical forcings", - "experiment_id":"hist-resIPO", - "frequency":"fx", - "grid":"T106", - "grid_label":"gn", - "institution_id":"BCC", - "nominal_resolution":"100 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"historical", - "parent_source_id":"BCC-CSM2-MR", - "parent_time_units":"days since 1870-01-01", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"BCC-CSM2-MR", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"fx", - "variable_id":"areacella", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190613", - "standard_name":"cell_area", - "long_name":"Grid-Cell Area for Atmospheric Variables", - "units":"m2", - "instance_id":"CMIP6.GMMIP.BCC.BCC-CSM2-MR.hist-resIPO.r1i1p1f1.fx.areacella.gn.v20190613" - }, - { - "start_time":null, - "end_time":null, - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CCCma\/CanESM5\/historical\/r1i1p1f1\/fx\/areacella\/gn\/v20190429\/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc", - "activity_id":"CMIP", - "branch_method":"Spin-up documentation", - "branch_time_in_child":0.0, - "branch_time_in_parent":1223115.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"fx", - "grid":"T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude\/latitude; 49 levels; top level 1 hPa", - "grid_label":"gn", - "institution_id":"CCCma", - "nominal_resolution":"500 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"CanESM5", - "parent_time_units":"days since 1850-01-01 0:0:0.0", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"CanESM5", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"fx", - "variable_id":"areacella", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190429", - "standard_name":"cell_area", - "long_name":"Grid-Cell Area for Atmospheric Grid Variables", - "units":"m2", - "instance_id":"CMIP6.CMIP.CCCma.CanESM5.historical.r1i1p1f1.fx.areacella.gn.v20190429" - }, - { - "start_time":null, - "end_time":null, - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CNRM-CERFACS\/CNRM-CM6-1\/historical\/r1i1p1f2\/fx\/areacella\/gr\/v20180917\/areacella_fx_CNRM-CM6-1_historical_r1i1p1f2_gr.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"fx", - "grid":"data regridded to a T127 gaussian grid (128x256 latlon) from a native atmosphere T127l reduced gaussian grid", - "grid_label":"gr", - "institution_id":"CNRM-CERFACS", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"CNRM-CM6-1", - "parent_time_units":"days since 1850-01-01 00:00:00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos land", - "source_id":"CNRM-CM6-1", - "source_type":"AOGCM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"fx", - "variable_id":"areacella", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20180917", - "standard_name":"cell_area", - "long_name":"Grid-Cell Area for Atmospheric Variables", - "units":"m2", - "instance_id":"CMIP6.CMIP.CNRM-CERFACS.CNRM-CM6-1.historical.r1i1p1f2.fx.areacella.gr.v20180917" - }, - { - "start_time":null, - "end_time":null, - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MIROC\/MIROC6\/historical\/r1i1p1f1\/fx\/areacella\/gn\/v20190311\/areacella_fx_MIROC6_historical_r1i1p1f1_gn.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "frequency":"fx", - "grid":"native atmosphere T85 Gaussian grid", - "grid_label":"gn", - "institution_id":"MIROC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl", - "parent_source_id":"MIROC6", - "parent_time_units":"days since 3200-1-1", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MIROC6", - "source_type":"AOGCM AER", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"fx", - "variable_id":"areacella", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "vertical_levels":1, - "version":"v20190311", - "standard_name":"cell_area", - "long_name":"Grid-Cell Area for Atmospheric Variables", - "units":"m2", - "instance_id":"CMIP6.CMIP.MIROC.MIROC6.historical.r1i1p1f1.fx.areacella.gn.v20190311" - }, - { - "start_time":null, - "end_time":null, - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MOHC\/UKESM1-0-LL\/piControl\/r1i1p1f2\/fx\/areacella\/gn\/v20190705\/areacella_fx_UKESM1-0-LL_piControl_r1i1p1f2_gn.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":39600.0, - "branch_time_in_parent":39600.0, - "experiment":"pre-industrial control", - "experiment_id":"piControl", - "frequency":"fx", - "grid":"Native N96 grid; 192 x 144 longitude\/latitude", - "grid_label":"gn", - "institution_id":"MOHC", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"piControl-spinup", - "parent_source_id":"UKESM1-0-LL", - "parent_time_units":"days since 1850-01-01-00-00-00", - "parent_variant_label":"r1i1p1f2", - "product":"model-output", - "realm":"atmos", - "source_id":"UKESM1-0-LL", - "source_type":"AOGCM AER BGC CHEM", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"fx", - "variable_id":"areacella", - "variant_label":"r1i1p1f2", - "member_id":"r1i1p1f2", - "vertical_levels":1, - "version":"v20190705", - "standard_name":"cell_area", - "long_name":"Grid-Cell Area for Atmospheric Grid Variables", - "units":"m2", - "instance_id":"CMIP6.CMIP.MOHC.UKESM1-0-LL.piControl.r1i1p1f2.fx.areacella.gn.v20190705" - } -] diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_climate_drivers_for_fire.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_climate_drivers_for_fire.json deleted file mode 100644 index 1a52925ac..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_climate_drivers_for_fire.json +++ /dev/null @@ -1,362 +0,0 @@ -{ - "start_time":{ - "83":"2013-01-16T12:00:00.000", - "84":"2013-01-16T12:00:00.000", - "85":"2013-01-16T12:00:00.000", - "86":"2013-01-16T12:00:00.000", - "87":"2013-01-16T12:00:00.000", - "17":"1850-01-16T12:00:00.000", - "24":"1850-01-16T12:00:00.000", - "41":null - }, - "end_time":{ - "83":"2014-12-16T12:00:00.000", - "84":"2014-12-16T12:00:00.000", - "85":"2014-12-16T12:00:00.000", - "86":"2014-12-16T12:00:00.000", - "87":"2014-12-16T12:00:00.000", - "17":"2014-12-16T12:00:00.000", - "24":"2014-12-16T12:00:00.000", - "41":null - }, - "path":{ - "83":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/hurs\/gn\/v20191115\/hurs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", - "84":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/tasmax\/gn\/v20191115\/tasmax_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", - "85":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Emon\/vegFrac\/gn\/v20191115\/vegFrac_Emon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", - "86":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Lmon\/cVeg\/gn\/v20191115\/cVeg_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", - "87":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Lmon\/treeFrac\/gn\/v20191115\/treeFrac_Lmon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_201301-201412.nc", - "17":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/pr\/gn\/v20191115\/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "24":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/tas\/gn\/v20191115\/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "41":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/fx\/sftlf\/gn\/v20191115\/sftlf_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc" - }, - "activity_id":{ - "83":"CMIP", - "84":"CMIP", - "85":"CMIP", - "86":"CMIP", - "87":"CMIP", - "17":"CMIP", - "24":"CMIP", - "41":"CMIP" - }, - "branch_method":{ - "83":"standard", - "84":"standard", - "85":"standard", - "86":"standard", - "87":"standard", - "17":"standard", - "24":"standard", - "41":"standard" - }, - "branch_time_in_child":{ - "83":0.0, - "84":0.0, - "85":0.0, - "86":0.0, - "87":0.0, - "17":0.0, - "24":0.0, - "41":0.0 - }, - "branch_time_in_parent":{ - "83":21915.0, - "84":21915.0, - "85":21915.0, - "86":21915.0, - "87":21915.0, - "17":21915.0, - "24":21915.0, - "41":21915.0 - }, - "experiment":{ - "83":"all-forcing simulation of the recent past", - "84":"all-forcing simulation of the recent past", - "85":"all-forcing simulation of the recent past", - "86":"all-forcing simulation of the recent past", - "87":"all-forcing simulation of the recent past", - "17":"all-forcing simulation of the recent past", - "24":"all-forcing simulation of the recent past", - "41":"all-forcing simulation of the recent past" - }, - "experiment_id":{ - "83":"historical", - "84":"historical", - "85":"historical", - "86":"historical", - "87":"historical", - "17":"historical", - "24":"historical", - "41":"historical" - }, - "frequency":{ - "83":"mon", - "84":"mon", - "85":"mon", - "86":"mon", - "87":"mon", - "17":"mon", - "24":"mon", - "41":"fx" - }, - "grid":{ - "83":"native atmosphere N96 grid (145x192 latxlon)", - "84":"native atmosphere N96 grid (145x192 latxlon)", - "85":"native atmosphere N96 grid (145x192 latxlon)", - "86":"native atmosphere N96 grid (145x192 latxlon)", - "87":"native atmosphere N96 grid (145x192 latxlon)", - "17":"native atmosphere N96 grid (145x192 latxlon)", - "24":"native atmosphere N96 grid (145x192 latxlon)", - "41":"native atmosphere N96 grid (145x192 latxlon)" - }, - "grid_label":{ - "83":"gn", - "84":"gn", - "85":"gn", - "86":"gn", - "87":"gn", - "17":"gn", - "24":"gn", - "41":"gn" - }, - "institution_id":{ - "83":"CSIRO", - "84":"CSIRO", - "85":"CSIRO", - "86":"CSIRO", - "87":"CSIRO", - "17":"CSIRO", - "24":"CSIRO", - "41":"CSIRO" - }, - "nominal_resolution":{ - "83":"250 km", - "84":"250 km", - "85":"250 km", - "86":"250 km", - "87":"250 km", - "17":"250 km", - "24":"250 km", - "41":"250 km" - }, - "parent_activity_id":{ - "83":"CMIP", - "84":"CMIP", - "85":"CMIP", - "86":"CMIP", - "87":"CMIP", - "17":"CMIP", - "24":"CMIP", - "41":"CMIP" - }, - "parent_experiment_id":{ - "83":"piControl", - "84":"piControl", - "85":"piControl", - "86":"piControl", - "87":"piControl", - "17":"piControl", - "24":"piControl", - "41":"piControl" - }, - "parent_source_id":{ - "83":"ACCESS-ESM1-5", - "84":"ACCESS-ESM1-5", - "85":"ACCESS-ESM1-5", - "86":"ACCESS-ESM1-5", - "87":"ACCESS-ESM1-5", - "17":"ACCESS-ESM1-5", - "24":"ACCESS-ESM1-5", - "41":"ACCESS-ESM1-5" - }, - "parent_time_units":{ - "83":"days since 0101-1-1", - "84":"days since 0101-1-1", - "85":"days since 0101-1-1", - "86":"days since 0101-1-1", - "87":"days since 0101-1-1", - "17":"days since 0101-1-1", - "24":"days since 0101-1-1", - "41":"days since 0101-1-1" - }, - "parent_variant_label":{ - "83":"r1i1p1f1", - "84":"r1i1p1f1", - "85":"r1i1p1f1", - "86":"r1i1p1f1", - "87":"r1i1p1f1", - "17":"r1i1p1f1", - "24":"r1i1p1f1", - "41":"r1i1p1f1" - }, - "product":{ - "83":"model-output", - "84":"model-output", - "85":"model-output", - "86":"model-output", - "87":"model-output", - "17":"model-output", - "24":"model-output", - "41":"model-output" - }, - "realm":{ - "83":"atmos", - "84":"atmos", - "85":"land", - "86":"land", - "87":"land", - "17":"atmos", - "24":"atmos", - "41":"atmos" - }, - "source_id":{ - "83":"ACCESS-ESM1-5", - "84":"ACCESS-ESM1-5", - "85":"ACCESS-ESM1-5", - "86":"ACCESS-ESM1-5", - "87":"ACCESS-ESM1-5", - "17":"ACCESS-ESM1-5", - "24":"ACCESS-ESM1-5", - "41":"ACCESS-ESM1-5" - }, - "source_type":{ - "83":"AOGCM", - "84":"AOGCM", - "85":"AOGCM", - "86":"AOGCM", - "87":"AOGCM", - "17":"AOGCM", - "24":"AOGCM", - "41":"AOGCM" - }, - "sub_experiment":{ - "83":"none", - "84":"none", - "85":"none", - "86":"none", - "87":"none", - "17":"none", - "24":"none", - "41":"none" - }, - "sub_experiment_id":{ - "83":"none", - "84":"none", - "85":"none", - "86":"none", - "87":"none", - "17":"none", - "24":"none", - "41":"none" - }, - "table_id":{ - "83":"Amon", - "84":"Amon", - "85":"Emon", - "86":"Lmon", - "87":"Lmon", - "17":"Amon", - "24":"Amon", - "41":"fx" - }, - "variable_id":{ - "83":"hurs", - "84":"tasmax", - "85":"vegFrac", - "86":"cVeg", - "87":"treeFrac", - "17":"pr", - "24":"tas", - "41":"sftlf" - }, - "variant_label":{ - "83":"r1i1p1f1", - "84":"r1i1p1f1", - "85":"r1i1p1f1", - "86":"r1i1p1f1", - "87":"r1i1p1f1", - "17":"r1i1p1f1", - "24":"r1i1p1f1", - "41":"r1i1p1f1" - }, - "member_id":{ - "83":"r1i1p1f1", - "84":"r1i1p1f1", - "85":"r1i1p1f1", - "86":"r1i1p1f1", - "87":"r1i1p1f1", - "17":"r1i1p1f1", - "24":"r1i1p1f1", - "41":"r1i1p1f1" - }, - "vertical_levels":{ - "83":1, - "84":1, - "85":1, - "86":1, - "87":1, - "17":1, - "24":1, - "41":1 - }, - "version":{ - "83":"v20191115", - "84":"v20191115", - "85":"v20191115", - "86":"v20191115", - "87":"v20191115", - "17":"v20191115", - "24":"v20191115", - "41":"v20191115" - }, - "standard_name":{ - "83":"relative_humidity", - "84":"air_temperature", - "85":"area_fraction", - "86":"vegetation_carbon_content", - "87":"area_fraction", - "17":"precipitation_flux", - "24":"air_temperature", - "41":"land_area_fraction" - }, - "long_name":{ - "83":"Near-Surface Relative Humidity", - "84":"Daily Maximum Near-Surface Air Temperature", - "85":"Total Vegetated Percentage Cover", - "86":"Carbon Mass in Vegetation", - "87":"Tree Cover Percentage", - "17":"Precipitation", - "24":"Near-Surface Air Temperature", - "41":"Percentage of the grid cell occupied by land (including lakes)" - }, - "units":{ - "83":"%", - "84":"K", - "85":"%", - "86":"kg m-2", - "87":"%", - "17":"kg m-2 s-1", - "24":"K", - "41":"%" - }, - "finalised":{ - "83":true, - "84":true, - "85":true, - "86":true, - "87":true, - "17":true, - "24":true, - "41":true - }, - "instance_id":{ - "83":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.hurs.gn.v20191115", - "84":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tasmax.gn.v20191115", - "85":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Emon.vegFrac.gn.v20191115", - "86":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.cVeg.gn.v20191115", - "87":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Lmon.treeFrac.gn.v20191115", - "17":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.pr.gn.v20191115", - "24":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tas.gn.v20191115", - "41":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.fx.sftlf.gn.v20191115" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_cloud_radiative_effects.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_cloud_radiative_effects.json deleted file mode 100644 index e10591f2b..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_cloud_radiative_effects.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "start_time":{ - "4":"1850-01-16T12:00:00.000", - "3":"1850-01-16T12:00:00.000", - "2":"1850-01-16T12:00:00.000", - "1":"1850-01-16T12:00:00.000" - }, - "end_time":{ - "4":"2014-12-16T12:00:00.000", - "3":"2014-12-16T12:00:00.000", - "2":"2014-12-16T12:00:00.000", - "1":"2014-12-16T12:00:00.000" - }, - "path":{ - "4":"\/work\/bd0854\/DATA\/ESMValTool2\/CMIP6_DKRZ\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/rsut\/gn\/v20191115\/rsut_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "3":"\/work\/bd0854\/DATA\/ESMValTool2\/CMIP6_DKRZ\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/rsutcs\/gn\/v20191115\/rsutcs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "2":"\/work\/bd0854\/DATA\/ESMValTool2\/CMIP6_DKRZ\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/rlutcs\/gn\/v20191115\/rlutcs_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "1":"\/work\/bd0854\/DATA\/ESMValTool2\/CMIP6_DKRZ\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/rlut\/gn\/v20191115\/rlut_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc" - }, - "activity_id":{ - "4":"CMIP", - "3":"CMIP", - "2":"CMIP", - "1":"CMIP" - }, - "branch_method":{ - "4":"standard", - "3":"standard", - "2":"standard", - "1":"standard" - }, - "branch_time_in_child":{ - "4":0.0, - "3":0.0, - "2":0.0, - "1":0.0 - }, - "branch_time_in_parent":{ - "4":21915.0, - "3":21915.0, - "2":21915.0, - "1":21915.0 - }, - "experiment":{ - "4":"all-forcing simulation of the recent past", - "3":"all-forcing simulation of the recent past", - "2":"all-forcing simulation of the recent past", - "1":"all-forcing simulation of the recent past" - }, - "experiment_id":{ - "4":"historical", - "3":"historical", - "2":"historical", - "1":"historical" - }, - "frequency":{ - "4":"mon", - "3":"mon", - "2":"mon", - "1":"mon" - }, - "grid":{ - "4":"native atmosphere N96 grid (145x192 latxlon)", - "3":"native atmosphere N96 grid (145x192 latxlon)", - "2":"native atmosphere N96 grid (145x192 latxlon)", - "1":"native atmosphere N96 grid (145x192 latxlon)" - }, - "grid_label":{ - "4":"gn", - "3":"gn", - "2":"gn", - "1":"gn" - }, - "institution_id":{ - "4":"CSIRO", - "3":"CSIRO", - "2":"CSIRO", - "1":"CSIRO" - }, - "nominal_resolution":{ - "4":"250 km", - "3":"250 km", - "2":"250 km", - "1":"250 km" - }, - "parent_activity_id":{ - "4":"CMIP", - "3":"CMIP", - "2":"CMIP", - "1":"CMIP" - }, - "parent_experiment_id":{ - "4":"piControl", - "3":"piControl", - "2":"piControl", - "1":"piControl" - }, - "parent_source_id":{ - "4":"ACCESS-ESM1-5", - "3":"ACCESS-ESM1-5", - "2":"ACCESS-ESM1-5", - "1":"ACCESS-ESM1-5" - }, - "parent_time_units":{ - "4":"days since 0101-1-1", - "3":"days since 0101-1-1", - "2":"days since 0101-1-1", - "1":"days since 0101-1-1" - }, - "parent_variant_label":{ - "4":"r1i1p1f1", - "3":"r1i1p1f1", - "2":"r1i1p1f1", - "1":"r1i1p1f1" - }, - "product":{ - "4":"model-output", - "3":"model-output", - "2":"model-output", - "1":"model-output" - }, - "realm":{ - "4":"atmos", - "3":"atmos", - "2":"atmos", - "1":"atmos" - }, - "source_id":{ - "4":"ACCESS-ESM1-5", - "3":"ACCESS-ESM1-5", - "2":"ACCESS-ESM1-5", - "1":"ACCESS-ESM1-5" - }, - "source_type":{ - "4":"AOGCM", - "3":"AOGCM", - "2":"AOGCM", - "1":"AOGCM" - }, - "sub_experiment":{ - "4":"none", - "3":"none", - "2":"none", - "1":"none" - }, - "sub_experiment_id":{ - "4":"none", - "3":"none", - "2":"none", - "1":"none" - }, - "table_id":{ - "4":"Amon", - "3":"Amon", - "2":"Amon", - "1":"Amon" - }, - "variable_id":{ - "4":"rsut", - "3":"rsutcs", - "2":"rlutcs", - "1":"rlut" - }, - "variant_label":{ - "4":"r1i1p1f1", - "3":"r1i1p1f1", - "2":"r1i1p1f1", - "1":"r1i1p1f1" - }, - "member_id":{ - "4":"r1i1p1f1", - "3":"r1i1p1f1", - "2":"r1i1p1f1", - "1":"r1i1p1f1" - }, - "standard_name":{ - "4":"toa_outgoing_shortwave_flux", - "3":"toa_outgoing_shortwave_flux_assuming_clear_sky", - "2":"toa_outgoing_longwave_flux_assuming_clear_sky", - "1":"toa_outgoing_longwave_flux" - }, - "long_name":{ - "4":"TOA Outgoing Shortwave Radiation", - "3":"TOA Outgoing Clear-Sky Shortwave Radiation", - "2":"TOA Outgoing Clear-Sky Longwave Radiation", - "1":"TOA Outgoing Longwave Radiation" - }, - "units":{ - "4":"W m-2", - "3":"W m-2", - "2":"W m-2", - "1":"W m-2" - }, - "vertical_levels":{ - "4":1, - "3":1, - "2":1, - "1":1 - }, - "init_year":{ - "4":null, - "3":null, - "2":null, - "1":null - }, - "version":{ - "4":"v20191115", - "3":"v20191115", - "2":"v20191115", - "1":"v20191115" - }, - "instance_id":{ - "4":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.rsut.gn.v20191115", - "3":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.rsutcs.gn.v20191115", - "2":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.rlutcs.gn.v20191115", - "1":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.rlut.gn.v20191115" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_cloud_scatterplots_cmip6.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_cloud_scatterplots_cmip6.json deleted file mode 100644 index 51516089a..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_cloud_scatterplots_cmip6.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "start_time":{ - "207":"1850-01-15T12:00:00.000", - "213":"1850-01-15T12:00:00.000", - "214":"1850-01-15T12:00:00.000", - "217":null - }, - "end_time":{ - "207":"2014-12-15T12:00:00.000", - "213":"2014-12-15T12:00:00.000", - "214":"2014-12-15T12:00:00.000", - "217":null - }, - "path":{ - "207":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/NCAR\/CESM2\/historical\/r1i1p1f1\/Amon\/clt\/gn\/v20190308\/clt_Amon_CESM2_historical_r1i1p1f1_gn_185001-201412.nc", - "213":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/NCAR\/CESM2\/historical\/r1i1p1f1\/Amon\/rsut\/gn\/v20190308\/rsut_Amon_CESM2_historical_r1i1p1f1_gn_185001-201412.nc", - "214":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/NCAR\/CESM2\/historical\/r1i1p1f1\/Amon\/rsutcs\/gn\/v20190308\/rsutcs_Amon_CESM2_historical_r1i1p1f1_gn_185001-201412.nc", - "217":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/NCAR\/CESM2\/historical\/r1i1p1f1\/fx\/areacella\/gn\/v20190308\/areacella_fx_CESM2_historical_r1i1p1f1_gn.nc" - }, - "activity_id":{ - "207":"CMIP", - "213":"CMIP", - "214":"CMIP", - "217":"CMIP" - }, - "branch_method":{ - "207":"standard", - "213":"standard", - "214":"standard", - "217":"standard" - }, - "branch_time_in_child":{ - "207":674885.0, - "213":674885.0, - "214":674885.0, - "217":674885.0 - }, - "branch_time_in_parent":{ - "207":219000.0, - "213":219000.0, - "214":219000.0, - "217":219000.0 - }, - "experiment":{ - "207":"all-forcing simulation of the recent past", - "213":"all-forcing simulation of the recent past", - "214":"all-forcing simulation of the recent past", - "217":"all-forcing simulation of the recent past" - }, - "experiment_id":{ - "207":"historical", - "213":"historical", - "214":"historical", - "217":"historical" - }, - "frequency":{ - "207":"mon", - "213":"mon", - "214":"mon", - "217":"fx" - }, - "grid":{ - "207":"native 0.9x1.25 finite volume grid (192x288 latxlon)", - "213":"native 0.9x1.25 finite volume grid (192x288 latxlon)", - "214":"native 0.9x1.25 finite volume grid (192x288 latxlon)", - "217":"native 0.9x1.25 finite volume grid (192x288 latxlon)" - }, - "grid_label":{ - "207":"gn", - "213":"gn", - "214":"gn", - "217":"gn" - }, - "institution_id":{ - "207":"NCAR", - "213":"NCAR", - "214":"NCAR", - "217":"NCAR" - }, - "nominal_resolution":{ - "207":"100 km", - "213":"100 km", - "214":"100 km", - "217":"100 km" - }, - "parent_activity_id":{ - "207":"CMIP", - "213":"CMIP", - "214":"CMIP", - "217":"CMIP" - }, - "parent_experiment_id":{ - "207":"piControl", - "213":"piControl", - "214":"piControl", - "217":"piControl" - }, - "parent_source_id":{ - "207":"CESM2", - "213":"CESM2", - "214":"CESM2", - "217":"CESM2" - }, - "parent_time_units":{ - "207":"days since 0001-01-01 00:00:00", - "213":"days since 0001-01-01 00:00:00", - "214":"days since 0001-01-01 00:00:00", - "217":"days since 0001-01-01 00:00:00" - }, - "parent_variant_label":{ - "207":"r1i1p1f1", - "213":"r1i1p1f1", - "214":"r1i1p1f1", - "217":"r1i1p1f1" - }, - "product":{ - "207":"model-output", - "213":"model-output", - "214":"model-output", - "217":"model-output" - }, - "realm":{ - "207":"atmos", - "213":"atmos", - "214":"atmos", - "217":"atmos land" - }, - "source_id":{ - "207":"CESM2", - "213":"CESM2", - "214":"CESM2", - "217":"CESM2" - }, - "source_type":{ - "207":"AOGCM BGC", - "213":"AOGCM BGC", - "214":"AOGCM BGC", - "217":"AOGCM BGC" - }, - "sub_experiment":{ - "207":"none", - "213":"none", - "214":"none", - "217":"none" - }, - "sub_experiment_id":{ - "207":"none", - "213":"none", - "214":"none", - "217":"none" - }, - "table_id":{ - "207":"Amon", - "213":"Amon", - "214":"Amon", - "217":"fx" - }, - "variable_id":{ - "207":"clt", - "213":"rsut", - "214":"rsutcs", - "217":"areacella" - }, - "variant_label":{ - "207":"r1i1p1f1", - "213":"r1i1p1f1", - "214":"r1i1p1f1", - "217":"r1i1p1f1" - }, - "member_id":{ - "207":"r1i1p1f1", - "213":"r1i1p1f1", - "214":"r1i1p1f1", - "217":"r1i1p1f1" - }, - "vertical_levels":{ - "207":1, - "213":1, - "214":1, - "217":1 - }, - "version":{ - "207":"v20190308", - "213":"v20190308", - "214":"v20190308", - "217":"v20190308" - }, - "standard_name":{ - "207":"cloud_area_fraction", - "213":"toa_outgoing_shortwave_flux", - "214":"toa_outgoing_shortwave_flux_assuming_clear_sky", - "217":"cell_area" - }, - "long_name":{ - "207":"Total Cloud Cover Percentage", - "213":"TOA Outgoing Shortwave Radiation", - "214":"TOA Outgoing Clear-Sky Shortwave Radiation", - "217":"Grid-Cell Area for Atmospheric Grid Variables" - }, - "units":{ - "207":"%", - "213":"W m-2", - "214":"W m-2", - "217":"m2" - }, - "instance_id":{ - "207":"CMIP6.CMIP.NCAR.CESM2.historical.r1i1p1f1.Amon.clt.gn.v20190308", - "213":"CMIP6.CMIP.NCAR.CESM2.historical.r1i1p1f1.Amon.rsut.gn.v20190308", - "214":"CMIP6.CMIP.NCAR.CESM2.historical.r1i1p1f1.Amon.rsutcs.gn.v20190308", - "217":"CMIP6.CMIP.NCAR.CESM2.historical.r1i1p1f1.fx.areacella.gn.v20190308" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_cloud_scatterplots_obs4mips.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_cloud_scatterplots_obs4mips.json deleted file mode 100644 index a9914afaa..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_cloud_scatterplots_obs4mips.json +++ /dev/null @@ -1,200 +0,0 @@ -[ - { - "start_time":"2007-01-16T12:00:00.000", - "end_time":"2007-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/obs4MIPs\/ERA-5\/v20250220\/ta_mon_ERA-5_PCMDI_gn_200701-200712.nc", - "activity_id":"obs4MIPs", - "frequency":"mon", - "grid":"0.25x 0.25 degree latitude x longitude", - "grid_label":"gn", - "institution_id":"ECMWF", - "nominal_resolution":"25 km", - "product":"reanalysis", - "realm":"atmos", - "source_id":"ERA-5", - "source_type":"reanalysis", - "variable_id":"ta", - "variant_label":"PCMDI", - "long_name":"Air Temperature", - "units":"K", - "vertical_levels":37, - "source_version_number":"v20250220", - "instance_id":"obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220" - }, - { - "start_time":"2008-01-16T12:00:00.000", - "end_time":"2008-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/obs4MIPs\/ERA-5\/v20250220\/ta_mon_ERA-5_PCMDI_gn_200801-200812.nc", - "activity_id":"obs4MIPs", - "frequency":"mon", - "grid":"0.25x 0.25 degree latitude x longitude", - "grid_label":"gn", - "institution_id":"ECMWF", - "nominal_resolution":"25 km", - "product":"reanalysis", - "realm":"atmos", - "source_id":"ERA-5", - "source_type":"reanalysis", - "variable_id":"ta", - "variant_label":"PCMDI", - "long_name":"Air Temperature", - "units":"K", - "vertical_levels":37, - "source_version_number":"v20250220", - "instance_id":"obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220" - }, - { - "start_time":"2009-01-16T12:00:00.000", - "end_time":"2009-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/obs4MIPs\/ERA-5\/v20250220\/ta_mon_ERA-5_PCMDI_gn_200901-200912.nc", - "activity_id":"obs4MIPs", - "frequency":"mon", - "grid":"0.25x 0.25 degree latitude x longitude", - "grid_label":"gn", - "institution_id":"ECMWF", - "nominal_resolution":"25 km", - "product":"reanalysis", - "realm":"atmos", - "source_id":"ERA-5", - "source_type":"reanalysis", - "variable_id":"ta", - "variant_label":"PCMDI", - "long_name":"Air Temperature", - "units":"K", - "vertical_levels":37, - "source_version_number":"v20250220", - "instance_id":"obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220" - }, - { - "start_time":"2010-01-16T12:00:00.000", - "end_time":"2010-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/obs4MIPs\/ERA-5\/v20250220\/ta_mon_ERA-5_PCMDI_gn_201001-201012.nc", - "activity_id":"obs4MIPs", - "frequency":"mon", - "grid":"0.25x 0.25 degree latitude x longitude", - "grid_label":"gn", - "institution_id":"ECMWF", - "nominal_resolution":"25 km", - "product":"reanalysis", - "realm":"atmos", - "source_id":"ERA-5", - "source_type":"reanalysis", - "variable_id":"ta", - "variant_label":"PCMDI", - "long_name":"Air Temperature", - "units":"K", - "vertical_levels":37, - "source_version_number":"v20250220", - "instance_id":"obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220" - }, - { - "start_time":"2011-01-16T12:00:00.000", - "end_time":"2011-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/obs4MIPs\/ERA-5\/v20250220\/ta_mon_ERA-5_PCMDI_gn_201101-201112.nc", - "activity_id":"obs4MIPs", - "frequency":"mon", - "grid":"0.25x 0.25 degree latitude x longitude", - "grid_label":"gn", - "institution_id":"ECMWF", - "nominal_resolution":"25 km", - "product":"reanalysis", - "realm":"atmos", - "source_id":"ERA-5", - "source_type":"reanalysis", - "variable_id":"ta", - "variant_label":"PCMDI", - "long_name":"Air Temperature", - "units":"K", - "vertical_levels":37, - "source_version_number":"v20250220", - "instance_id":"obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220" - }, - { - "start_time":"2012-01-16T12:00:00.000", - "end_time":"2012-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/obs4MIPs\/ERA-5\/v20250220\/ta_mon_ERA-5_PCMDI_gn_201201-201212.nc", - "activity_id":"obs4MIPs", - "frequency":"mon", - "grid":"0.25x 0.25 degree latitude x longitude", - "grid_label":"gn", - "institution_id":"ECMWF", - "nominal_resolution":"25 km", - "product":"reanalysis", - "realm":"atmos", - "source_id":"ERA-5", - "source_type":"reanalysis", - "variable_id":"ta", - "variant_label":"PCMDI", - "long_name":"Air Temperature", - "units":"K", - "vertical_levels":37, - "source_version_number":"v20250220", - "instance_id":"obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220" - }, - { - "start_time":"2013-01-16T12:00:00.000", - "end_time":"2013-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/obs4MIPs\/ERA-5\/v20250220\/ta_mon_ERA-5_PCMDI_gn_201301-201312.nc", - "activity_id":"obs4MIPs", - "frequency":"mon", - "grid":"0.25x 0.25 degree latitude x longitude", - "grid_label":"gn", - "institution_id":"ECMWF", - "nominal_resolution":"25 km", - "product":"reanalysis", - "realm":"atmos", - "source_id":"ERA-5", - "source_type":"reanalysis", - "variable_id":"ta", - "variant_label":"PCMDI", - "long_name":"Air Temperature", - "units":"K", - "vertical_levels":37, - "source_version_number":"v20250220", - "instance_id":"obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220" - }, - { - "start_time":"2014-01-16T12:00:00.000", - "end_time":"2014-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/obs4MIPs\/ERA-5\/v20250220\/ta_mon_ERA-5_PCMDI_gn_201401-201412.nc", - "activity_id":"obs4MIPs", - "frequency":"mon", - "grid":"0.25x 0.25 degree latitude x longitude", - "grid_label":"gn", - "institution_id":"ECMWF", - "nominal_resolution":"25 km", - "product":"reanalysis", - "realm":"atmos", - "source_id":"ERA-5", - "source_type":"reanalysis", - "variable_id":"ta", - "variant_label":"PCMDI", - "long_name":"Air Temperature", - "units":"K", - "vertical_levels":37, - "source_version_number":"v20250220", - "instance_id":"obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220" - }, - { - "start_time":"2015-01-16T12:00:00.000", - "end_time":"2015-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/obs4MIPs\/ERA-5\/v20250220\/ta_mon_ERA-5_PCMDI_gn_201501-201512.nc", - "activity_id":"obs4MIPs", - "frequency":"mon", - "grid":"0.25x 0.25 degree latitude x longitude", - "grid_label":"gn", - "institution_id":"ECMWF", - "nominal_resolution":"25 km", - "product":"reanalysis", - "realm":"atmos", - "source_id":"ERA-5", - "source_type":"reanalysis", - "variable_id":"ta", - "variant_label":"PCMDI", - "long_name":"Air Temperature", - "units":"K", - "vertical_levels":37, - "source_version_number":"v20250220", - "instance_id":"obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220" - } -] diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_ecs.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_ecs.json deleted file mode 100644 index ecb6c3afd..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_ecs.json +++ /dev/null @@ -1,362 +0,0 @@ -{ - "start_time": { - "108": "0101-01-16T12:00:00.000", - "109": "0101-01-16T12:00:00.000", - "110": "0101-01-16T12:00:00.000", - "111": "0101-01-16T12:00:00.000", - "20": "0101-01-16T12:00:00.000", - "21": "0101-01-16T12:00:00.000", - "22": "0101-01-16T12:00:00.000", - "23": "0101-01-16T12:00:00.000" - }, - "end_time": { - "108": "0600-12-16T12:00:00.000", - "109": "0600-12-16T12:00:00.000", - "110": "0600-12-16T12:00:00.000", - "111": "0600-12-16T12:00:00.000", - "20": "0250-12-16T12:00:00.000", - "21": "0250-12-16T12:00:00.000", - "22": "0250-12-16T12:00:00.000", - "23": "0250-12-16T12:00:00.000" - }, - "path": { - "108": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/piControl/r1i1p1f1/Amon/rlut/gn/v20210316/rlut_Amon_ACCESS-ESM1-5_piControl_r1i1p1f1_gn_010101-060012.nc", - "109": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/piControl/r1i1p1f1/Amon/rsdt/gn/v20210316/rsdt_Amon_ACCESS-ESM1-5_piControl_r1i1p1f1_gn_010101-060012.nc", - "110": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/piControl/r1i1p1f1/Amon/rsut/gn/v20210316/rsut_Amon_ACCESS-ESM1-5_piControl_r1i1p1f1_gn_010101-060012.nc", - "111": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/piControl/r1i1p1f1/Amon/tas/gn/v20210316/tas_Amon_ACCESS-ESM1-5_piControl_r1i1p1f1_gn_010101-060012.nc", - "20": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/abrupt-4xCO2/r1i1p1f1/Amon/rlut/gn/v20191115/rlut_Amon_ACCESS-ESM1-5_abrupt-4xCO2_r1i1p1f1_gn_010101-025012.nc", - "21": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/abrupt-4xCO2/r1i1p1f1/Amon/rsdt/gn/v20191115/rsdt_Amon_ACCESS-ESM1-5_abrupt-4xCO2_r1i1p1f1_gn_010101-025012.nc", - "22": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/abrupt-4xCO2/r1i1p1f1/Amon/rsut/gn/v20191115/rsut_Amon_ACCESS-ESM1-5_abrupt-4xCO2_r1i1p1f1_gn_010101-025012.nc", - "23": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/abrupt-4xCO2/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_abrupt-4xCO2_r1i1p1f1_gn_010101-025012.nc" - }, - "activity_id": { - "108": "CMIP", - "109": "CMIP", - "110": "CMIP", - "111": "CMIP", - "20": "CMIP", - "21": "CMIP", - "22": "CMIP", - "23": "CMIP" - }, - "branch_method": { - "108": "standard", - "109": "standard", - "110": "standard", - "111": "standard", - "20": "standard", - "21": "standard", - "22": "standard", - "23": "standard" - }, - "branch_time_in_child": { - "108": 0.0, - "109": 0.0, - "110": 0.0, - "111": 0.0, - "20": 0.0, - "21": 0.0, - "22": 0.0, - "23": 0.0 - }, - "branch_time_in_parent": { - "108": 36524.0, - "109": 36524.0, - "110": 36524.0, - "111": 36524.0, - "20": 0.0, - "21": 0.0, - "22": 0.0, - "23": 0.0 - }, - "experiment": { - "108": "pre-industrial control", - "109": "pre-industrial control", - "110": "pre-industrial control", - "111": "pre-industrial control", - "20": "abrupt quadrupling of CO2", - "21": "abrupt quadrupling of CO2", - "22": "abrupt quadrupling of CO2", - "23": "abrupt quadrupling of CO2" - }, - "experiment_id": { - "108": "piControl", - "109": "piControl", - "110": "piControl", - "111": "piControl", - "20": "abrupt-4xCO2", - "21": "abrupt-4xCO2", - "22": "abrupt-4xCO2", - "23": "abrupt-4xCO2" - }, - "frequency": { - "108": "mon", - "109": "mon", - "110": "mon", - "111": "mon", - "20": "mon", - "21": "mon", - "22": "mon", - "23": "mon" - }, - "grid": { - "108": "native atmosphere N96 grid (145x192 latxlon)", - "109": "native atmosphere N96 grid (145x192 latxlon)", - "110": "native atmosphere N96 grid (145x192 latxlon)", - "111": "native atmosphere N96 grid (145x192 latxlon)", - "20": "native atmosphere N96 grid (145x192 latxlon)", - "21": "native atmosphere N96 grid (145x192 latxlon)", - "22": "native atmosphere N96 grid (145x192 latxlon)", - "23": "native atmosphere N96 grid (145x192 latxlon)" - }, - "grid_label": { - "108": "gn", - "109": "gn", - "110": "gn", - "111": "gn", - "20": "gn", - "21": "gn", - "22": "gn", - "23": "gn" - }, - "institution_id": { - "108": "CSIRO", - "109": "CSIRO", - "110": "CSIRO", - "111": "CSIRO", - "20": "CSIRO", - "21": "CSIRO", - "22": "CSIRO", - "23": "CSIRO" - }, - "nominal_resolution": { - "108": "250 km", - "109": "250 km", - "110": "250 km", - "111": "250 km", - "20": "250 km", - "21": "250 km", - "22": "250 km", - "23": "250 km" - }, - "parent_activity_id": { - "108": "CMIP", - "109": "CMIP", - "110": "CMIP", - "111": "CMIP", - "20": "CMIP", - "21": "CMIP", - "22": "CMIP", - "23": "CMIP" - }, - "parent_experiment_id": { - "108": "piControl-spinup", - "109": "piControl-spinup", - "110": "piControl-spinup", - "111": "piControl-spinup", - "20": "piControl", - "21": "piControl", - "22": "piControl", - "23": "piControl" - }, - "parent_source_id": { - "108": "ACCESS-ESM1-5", - "109": "ACCESS-ESM1-5", - "110": "ACCESS-ESM1-5", - "111": "ACCESS-ESM1-5", - "20": "ACCESS-ESM1-5", - "21": "ACCESS-ESM1-5", - "22": "ACCESS-ESM1-5", - "23": "ACCESS-ESM1-5" - }, - "parent_time_units": { - "108": "days since 0001-01-01", - "109": "days since 0001-01-01", - "110": "days since 0001-01-01", - "111": "days since 0001-01-01", - "20": "days since 0101-01-01", - "21": "days since 0101-01-01", - "22": "days since 0101-01-01", - "23": "days since 0101-01-01" - }, - "parent_variant_label": { - "108": "r1i1p1f1", - "109": "r1i1p1f1", - "110": "r1i1p1f1", - "111": "r1i1p1f1", - "20": "r1i1p1f1", - "21": "r1i1p1f1", - "22": "r1i1p1f1", - "23": "r1i1p1f1" - }, - "product": { - "108": "model-output", - "109": "model-output", - "110": "model-output", - "111": "model-output", - "20": "model-output", - "21": "model-output", - "22": "model-output", - "23": "model-output" - }, - "realm": { - "108": "atmos", - "109": "atmos", - "110": "atmos", - "111": "atmos", - "20": "atmos", - "21": "atmos", - "22": "atmos", - "23": "atmos" - }, - "source_id": { - "108": "ACCESS-ESM1-5", - "109": "ACCESS-ESM1-5", - "110": "ACCESS-ESM1-5", - "111": "ACCESS-ESM1-5", - "20": "ACCESS-ESM1-5", - "21": "ACCESS-ESM1-5", - "22": "ACCESS-ESM1-5", - "23": "ACCESS-ESM1-5" - }, - "source_type": { - "108": "AOGCM", - "109": "AOGCM", - "110": "AOGCM", - "111": "AOGCM", - "20": "AOGCM", - "21": "AOGCM", - "22": "AOGCM", - "23": "AOGCM" - }, - "sub_experiment": { - "108": "none", - "109": "none", - "110": "none", - "111": "none", - "20": "none", - "21": "none", - "22": "none", - "23": "none" - }, - "sub_experiment_id": { - "108": "none", - "109": "none", - "110": "none", - "111": "none", - "20": "none", - "21": "none", - "22": "none", - "23": "none" - }, - "table_id": { - "108": "Amon", - "109": "Amon", - "110": "Amon", - "111": "Amon", - "20": "Amon", - "21": "Amon", - "22": "Amon", - "23": "Amon" - }, - "variable_id": { - "108": "rlut", - "109": "rsdt", - "110": "rsut", - "111": "tas", - "20": "rlut", - "21": "rsdt", - "22": "rsut", - "23": "tas" - }, - "variant_label": { - "108": "r1i1p1f1", - "109": "r1i1p1f1", - "110": "r1i1p1f1", - "111": "r1i1p1f1", - "20": "r1i1p1f1", - "21": "r1i1p1f1", - "22": "r1i1p1f1", - "23": "r1i1p1f1" - }, - "member_id": { - "108": "r1i1p1f1", - "109": "r1i1p1f1", - "110": "r1i1p1f1", - "111": "r1i1p1f1", - "20": "r1i1p1f1", - "21": "r1i1p1f1", - "22": "r1i1p1f1", - "23": "r1i1p1f1" - }, - "standard_name": { - "108": "toa_outgoing_longwave_flux", - "109": "toa_incoming_shortwave_flux", - "110": "toa_outgoing_shortwave_flux", - "111": "air_temperature", - "20": "toa_outgoing_longwave_flux", - "21": "toa_incoming_shortwave_flux", - "22": "toa_outgoing_shortwave_flux", - "23": "air_temperature" - }, - "long_name": { - "108": "TOA Outgoing Longwave Radiation", - "109": "TOA Incident Shortwave Radiation", - "110": "TOA Outgoing Shortwave Radiation", - "111": "Near-Surface Air Temperature", - "20": "TOA Outgoing Longwave Radiation", - "21": "TOA Incident Shortwave Radiation", - "22": "TOA Outgoing Shortwave Radiation", - "23": "Near-Surface Air Temperature" - }, - "units": { - "108": "W m-2", - "109": "W m-2", - "110": "W m-2", - "111": "K", - "20": "W m-2", - "21": "W m-2", - "22": "W m-2", - "23": "K" - }, - "vertical_levels": { - "108": 1, - "109": 1, - "110": 1, - "111": 1, - "20": 1, - "21": 1, - "22": 1, - "23": 1 - }, - "init_year": { - "108": null, - "109": null, - "110": null, - "111": null, - "20": null, - "21": null, - "22": null, - "23": null - }, - "version": { - "108": "v20210316", - "109": "v20210316", - "110": "v20210316", - "111": "v20210316", - "20": "v20191115", - "21": "v20191115", - "22": "v20191115", - "23": "v20191115" - }, - "instance_id": { - "108": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.piControl.r1i1p1f1.Amon.rlut.gn.v20210316", - "109": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.piControl.r1i1p1f1.Amon.rsdt.gn.v20210316", - "110": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.piControl.r1i1p1f1.Amon.rsut.gn.v20210316", - "111": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.piControl.r1i1p1f1.Amon.tas.gn.v20210316", - "20": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.abrupt-4xCO2.r1i1p1f1.Amon.rlut.gn.v20191115", - "21": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.abrupt-4xCO2.r1i1p1f1.Amon.rsdt.gn.v20191115", - "22": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.abrupt-4xCO2.r1i1p1f1.Amon.rsut.gn.v20191115", - "23": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.abrupt-4xCO2.r1i1p1f1.Amon.tas.gn.v20191115" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_enso_characteristics.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_enso_characteristics.json deleted file mode 100644 index ee7d3e2c5..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_enso_characteristics.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "start_time":{ - "1":"1850-01-16T12:00:00.000", - "109":null - }, - "end_time":{ - "1":"2014-12-16T12:00:00.000", - "109":null - }, - "path":{ - "1":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Omon\/tos\/gn\/v20191115\/tos_Omon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "109":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Ofx\/areacello\/gn\/v20191115\/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc" - }, - "activity_id":{ - "1":"CMIP", - "109":"CMIP" - }, - "branch_method":{ - "1":"standard", - "109":"standard" - }, - "branch_time_in_child":{ - "1":0.0, - "109":0.0 - }, - "branch_time_in_parent":{ - "1":21915.0, - "109":21915.0 - }, - "experiment":{ - "1":"all-forcing simulation of the recent past", - "109":"all-forcing simulation of the recent past" - }, - "experiment_id":{ - "1":"historical", - "109":"historical" - }, - "frequency":{ - "1":"mon", - "109":"fx" - }, - "grid":{ - "1":"native atmosphere N96 grid (145x192 latxlon)", - "109":"native atmosphere N96 grid (145x192 latxlon)" - }, - "grid_label":{ - "1":"gn", - "109":"gn" - }, - "institution_id":{ - "1":"CSIRO", - "109":"CSIRO" - }, - "nominal_resolution":{ - "1":"250 km", - "109":"250 km" - }, - "parent_activity_id":{ - "1":"CMIP", - "109":"CMIP" - }, - "parent_experiment_id":{ - "1":"piControl", - "109":"piControl" - }, - "parent_source_id":{ - "1":"ACCESS-ESM1-5", - "109":"ACCESS-ESM1-5" - }, - "parent_time_units":{ - "1":"days since 0101-1-1", - "109":"days since 0101-1-1" - }, - "parent_variant_label":{ - "1":"r1i1p1f1", - "109":"r1i1p1f1" - }, - "product":{ - "1":"model-output", - "109":"model-output" - }, - "realm":{ - "1":"ocean", - "109":"ocean" - }, - "source_id":{ - "1":"ACCESS-ESM1-5", - "109":"ACCESS-ESM1-5" - }, - "source_type":{ - "1":"AOGCM", - "109":"AOGCM" - }, - "sub_experiment":{ - "1":"none", - "109":"none" - }, - "sub_experiment_id":{ - "1":"none", - "109":"none" - }, - "table_id":{ - "1":"Omon", - "109":"Ofx" - }, - "variable_id":{ - "1":"tos", - "109":"areacello" - }, - "variant_label":{ - "1":"r1i1p1f1", - "109":"r1i1p1f1" - }, - "member_id":{ - "1":"r1i1p1f1", - "109":"r1i1p1f1" - }, - "vertical_levels":{ - "1":1, - "109":1 - }, - "version":{ - "1":"v20191115", - "109":"v20191115" - }, - "standard_name":{ - "1":"sea_surface_temperature", - "109":"cell_area" - }, - "long_name":{ - "1":"Sea Surface Temperature", - "109":"Grid-Cell Area for Ocean Variables" - }, - "units":{ - "1":"degC", - "109":"m2" - }, - "instance_id":{ - "1":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Omon.tos.gn.v20191115", - "109":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Ofx.areacello.gn.v20191115" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_enso_climatology.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_enso_climatology.json deleted file mode 100644 index 203ab8cd5..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_enso_climatology.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "start_time":{ - "31":"1850-01-16T12:00:00.000", - "39":"1850-01-16T12:00:00.000", - "1":"1850-01-16T12:00:00.000" - }, - "end_time":{ - "31":"2014-12-16T12:00:00.000", - "39":"2014-12-16T12:00:00.000", - "1":"2014-12-16T12:00:00.000" - }, - "path":{ - "31":"\/home\/bandela\/.esgf\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/pr\/gn\/v20191115\/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "39":"\/home\/bandela\/.esgf\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/tauu\/gn\/v20191115\/tauu_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "1":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Omon\/tos\/gn\/v20191115\/tos_Omon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc" - }, - "activity_id":{ - "31":"CMIP", - "39":"CMIP", - "1":"CMIP" - }, - "branch_method":{ - "31":"standard", - "39":"standard", - "1":"standard" - }, - "branch_time_in_child":{ - "31":0.0, - "39":0.0, - "1":0.0 - }, - "branch_time_in_parent":{ - "31":21915.0, - "39":21915.0, - "1":21915.0 - }, - "experiment":{ - "31":"all-forcing simulation of the recent past", - "39":"all-forcing simulation of the recent past", - "1":"all-forcing simulation of the recent past" - }, - "experiment_id":{ - "31":"historical", - "39":"historical", - "1":"historical" - }, - "frequency":{ - "31":"mon", - "39":"mon", - "1":"mon" - }, - "grid":{ - "31":"native atmosphere N96 grid (145x192 latxlon)", - "39":"native atmosphere N96 grid (145x192 latxlon)", - "1":"native atmosphere N96 grid (145x192 latxlon)" - }, - "grid_label":{ - "31":"gn", - "39":"gn", - "1":"gn" - }, - "institution_id":{ - "31":"CSIRO", - "39":"CSIRO", - "1":"CSIRO" - }, - "nominal_resolution":{ - "31":"250 km", - "39":"250 km", - "1":"250 km" - }, - "parent_activity_id":{ - "31":"CMIP", - "39":"CMIP", - "1":"CMIP" - }, - "parent_experiment_id":{ - "31":"piControl", - "39":"piControl", - "1":"piControl" - }, - "parent_source_id":{ - "31":"ACCESS-ESM1-5", - "39":"ACCESS-ESM1-5", - "1":"ACCESS-ESM1-5" - }, - "parent_time_units":{ - "31":"days since 0101-1-1", - "39":"days since 0101-1-1", - "1":"days since 0101-1-1" - }, - "parent_variant_label":{ - "31":"r1i1p1f1", - "39":"r1i1p1f1", - "1":"r1i1p1f1" - }, - "product":{ - "31":"model-output", - "39":"model-output", - "1":"model-output" - }, - "realm":{ - "31":"atmos", - "39":"atmos", - "1":"ocean" - }, - "source_id":{ - "31":"ACCESS-ESM1-5", - "39":"ACCESS-ESM1-5", - "1":"ACCESS-ESM1-5" - }, - "source_type":{ - "31":"AOGCM", - "39":"AOGCM", - "1":"AOGCM" - }, - "sub_experiment":{ - "31":"none", - "39":"none", - "1":"none" - }, - "sub_experiment_id":{ - "31":"none", - "39":"none", - "1":"none" - }, - "table_id":{ - "31":"Amon", - "39":"Amon", - "1":"Omon" - }, - "variable_id":{ - "31":"pr", - "39":"tauu", - "1":"tos" - }, - "variant_label":{ - "31":"r1i1p1f1", - "39":"r1i1p1f1", - "1":"r1i1p1f1" - }, - "member_id":{ - "31":"r1i1p1f1", - "39":"r1i1p1f1", - "1":"r1i1p1f1" - }, - "vertical_levels":{ - "31":1, - "39":1, - "1":1 - }, - "version":{ - "31":"v20191115", - "39":"v20191115", - "1":"v20191115" - }, - "standard_name":{ - "31":"precipitation_flux", - "39":"surface_downward_eastward_stress", - "1":"sea_surface_temperature" - }, - "long_name":{ - "31":"Precipitation", - "39":"Surface Downward Eastward Wind Stress", - "1":"Sea Surface Temperature" - }, - "units":{ - "31":"kg m-2 s-1", - "39":"Pa", - "1":"degC" - }, - "instance_id":{ - "31":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.pr.gn.v20191115", - "39":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tauu.gn.v20191115", - "1":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Omon.tos.gn.v20191115" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_sea_ice_area.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_sea_ice_area.json deleted file mode 100644 index 576e4a22c..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_sea_ice_area.json +++ /dev/null @@ -1,146 +0,0 @@ -{ - "start_time":{ - "33":"1850-01-16T12:00:00.000", - "31":null - }, - "end_time":{ - "33":"2014-12-16T12:00:00.000", - "31":null - }, - "path":{ - "33":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/SImon\/siconc\/gn\/v20200817\/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "31":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Ofx\/areacello\/gn\/v20191115\/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc" - }, - "activity_id":{ - "33":"CMIP", - "31":"CMIP" - }, - "branch_method":{ - "33":"standard", - "31":"standard" - }, - "branch_time_in_child":{ - "33":0.0, - "31":0.0 - }, - "branch_time_in_parent":{ - "33":21915.0, - "31":21915.0 - }, - "experiment":{ - "33":"all-forcing simulation of the recent past", - "31":"all-forcing simulation of the recent past" - }, - "experiment_id":{ - "33":"historical", - "31":"historical" - }, - "frequency":{ - "33":"mon", - "31":"fx" - }, - "grid":{ - "33":"native atmosphere N96 grid (145x192 latxlon)", - "31":"native atmosphere N96 grid (145x192 latxlon)" - }, - "grid_label":{ - "33":"gn", - "31":"gn" - }, - "institution_id":{ - "33":"CSIRO", - "31":"CSIRO" - }, - "nominal_resolution":{ - "33":"250 km", - "31":"250 km" - }, - "parent_activity_id":{ - "33":"CMIP", - "31":"CMIP" - }, - "parent_experiment_id":{ - "33":"piControl", - "31":"piControl" - }, - "parent_source_id":{ - "33":"ACCESS-ESM1-5", - "31":"ACCESS-ESM1-5" - }, - "parent_time_units":{ - "33":"days since 0101-1-1", - "31":"days since 0101-1-1" - }, - "parent_variant_label":{ - "33":"r1i1p1f1", - "31":"r1i1p1f1" - }, - "product":{ - "33":"model-output", - "31":"model-output" - }, - "realm":{ - "33":"seaIce", - "31":"ocean" - }, - "source_id":{ - "33":"ACCESS-ESM1-5", - "31":"ACCESS-ESM1-5" - }, - "source_type":{ - "33":"AOGCM", - "31":"AOGCM" - }, - "sub_experiment":{ - "33":"none", - "31":"none" - }, - "sub_experiment_id":{ - "33":"none", - "31":"none" - }, - "table_id":{ - "33":"SImon", - "31":"Ofx" - }, - "variable_id":{ - "33":"siconc", - "31":"areacello" - }, - "variant_label":{ - "33":"r1i1p1f1", - "31":"r1i1p1f1" - }, - "member_id":{ - "33":"r1i1p1f1", - "31":"r1i1p1f1" - }, - "standard_name":{ - "33":"sea_ice_area_fraction", - "31":"cell_area" - }, - "long_name":{ - "33":"Sea-Ice Area Percentage (Ocean Grid)", - "31":"Grid-Cell Area for Ocean Variables" - }, - "units":{ - "33":"%", - "31":"m2" - }, - "vertical_levels":{ - "33":1, - "31":1 - }, - "init_year":{ - "33":null, - "31":null - }, - "version":{ - "33":"v20200817", - "31":"v20191115" - }, - "instance_id":{ - "33":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.SImon.siconc.gn.v20200817", - "31":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Ofx.areacello.gn.v20191115" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_sea_ice_sensitivity.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_sea_ice_sensitivity.json deleted file mode 100644 index 48f2ad1d5..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_sea_ice_sensitivity.json +++ /dev/null @@ -1,506 +0,0 @@ -{ - "start_time":{ - "76":"1979-01-16T12:00:00.000", - "78":"1979-01-16T00:00:00.000", - "79":"1979-01-16T00:00:00.000", - "74":"1979-01-16T12:00:00.000", - "19":"1850-01-16T12:00:00.000", - "33":"1979-01-16T12:00:00.000", - "81":null, - "34":null, - "77":null, - "80":null, - "75":null, - "28":null - }, - "end_time":{ - "76":"2014-12-16T12:00:00.000", - "78":"2014-12-16T00:00:00.000", - "79":"2014-12-16T00:00:00.000", - "74":"2014-12-16T12:00:00.000", - "19":"2014-12-16T12:00:00.000", - "33":"2014-12-16T12:00:00.000", - "81":null, - "34":null, - "77":null, - "80":null, - "75":null, - "28":null - }, - "path":{ - "76":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CCCma\/CanESM5\/historical\/r1i1p1f1\/SImon\/siconc\/gn\/v20190429\/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc", - "78":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/MOHC\/HadGEM3-GC31-LL\/historical\/r1i1p1f3\/Amon\/tas\/gn\/v20190624\/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc", - "79":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/MOHC\/HadGEM3-GC31-LL\/historical\/r1i1p1f3\/SImon\/siconc\/gn\/v20200330\/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc", - "74":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CCCma\/CanESM5\/historical\/r1i1p1f1\/Amon\/tas\/gn\/v20190429\/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc", - "19":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Amon\/tas\/gn\/v20191115\/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc", - "33":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/SImon\/siconc\/gn\/v20200817\/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc", - "81":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/MOHC\/HadGEM3-GC31-LL\/piControl\/r1i1p1f1\/fx\/areacella\/gn\/v20190709\/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc", - "34":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/fx\/areacella\/gn\/v20191115\/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc", - "77":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CCCma\/CanESM5\/historical\/r1i1p1f1\/fx\/areacella\/gn\/v20190429\/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc", - "80":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/MOHC\/HadGEM3-GC31-LL\/piControl\/r1i1p1f1\/Ofx\/areacello\/gn\/v20190709\/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc", - "75":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CCCma\/CanESM5\/historical\/r1i1p1f1\/Ofx\/areacello\/gn\/v20190429\/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc", - "28":"\/home\/bandela\/src\/Climate-REF\/ref-sample-data\/data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/historical\/r1i1p1f1\/Ofx\/areacello\/gn\/v20191115\/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc" - }, - "activity_id":{ - "76":"CMIP", - "78":"CMIP", - "79":"CMIP", - "74":"CMIP", - "19":"CMIP", - "33":"CMIP", - "81":"CMIP", - "34":"CMIP", - "77":"CMIP", - "80":"CMIP", - "75":"CMIP", - "28":"CMIP" - }, - "branch_method":{ - "76":"Spin-up documentation", - "78":"standard", - "79":"standard", - "74":"Spin-up documentation", - "19":"standard", - "33":"standard", - "81":"standard", - "34":"standard", - "77":"Spin-up documentation", - "80":"standard", - "75":"Spin-up documentation", - "28":"standard" - }, - "branch_time_in_child":{ - "76":0.0, - "78":0.0, - "79":0.0, - "74":0.0, - "19":0.0, - "33":0.0, - "81":0.0, - "34":0.0, - "77":0.0, - "80":0.0, - "75":0.0, - "28":0.0 - }, - "branch_time_in_parent":{ - "76":1223115.0, - "78":0.0, - "79":0.0, - "74":1223115.0, - "19":21915.0, - "33":21915.0, - "81":267840.0, - "34":21915.0, - "77":1223115.0, - "80":267840.0, - "75":1223115.0, - "28":21915.0 - }, - "experiment":{ - "76":"all-forcing simulation of the recent past", - "78":"all-forcing simulation of the recent past", - "79":"all-forcing simulation of the recent past", - "74":"all-forcing simulation of the recent past", - "19":"all-forcing simulation of the recent past", - "33":"all-forcing simulation of the recent past", - "81":"pre-industrial control", - "34":"all-forcing simulation of the recent past", - "77":"all-forcing simulation of the recent past", - "80":"pre-industrial control", - "75":"all-forcing simulation of the recent past", - "28":"all-forcing simulation of the recent past" - }, - "experiment_id":{ - "76":"historical", - "78":"historical", - "79":"historical", - "74":"historical", - "19":"historical", - "33":"historical", - "81":"piControl", - "34":"historical", - "77":"historical", - "80":"piControl", - "75":"historical", - "28":"historical" - }, - "frequency":{ - "76":"mon", - "78":"mon", - "79":"mon", - "74":"mon", - "19":"mon", - "33":"mon", - "81":"fx", - "34":"fx", - "77":"fx", - "80":"fx", - "75":"fx", - "28":"fx" - }, - "grid":{ - "76":"ORCA1 tripolar grid, 1 deg with refinement to 1\/3 deg within 20 degrees of the equator; 361 x 290 longitude\/latitude; 45 vertical levels; top grid cell 0-6.19 m", - "78":"Native N96 grid; 192 x 144 longitude\/latitude", - "79":"Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1\/3 degree in the tropics; 360 x 330 longitude\/latitude", - "74":"T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude\/latitude; 49 levels; top level 1 hPa", - "19":"native atmosphere N96 grid (145x192 latxlon)", - "33":"native atmosphere N96 grid (145x192 latxlon)", - "81":"Native N96 grid; 192 x 144 longitude\/latitude", - "34":"native atmosphere N96 grid (145x192 latxlon)", - "77":"T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude\/latitude; 49 levels; top level 1 hPa", - "80":"Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1\/3 degree in the tropics; 360 x 330 longitude\/latitude", - "75":"ORCA1 tripolar grid, 1 deg with refinement to 1\/3 deg within 20 degrees of the equator; 361 x 290 longitude\/latitude; 45 vertical levels; top grid cell 0-6.19 m", - "28":"native atmosphere N96 grid (145x192 latxlon)" - }, - "grid_label":{ - "76":"gn", - "78":"gn", - "79":"gn", - "74":"gn", - "19":"gn", - "33":"gn", - "81":"gn", - "34":"gn", - "77":"gn", - "80":"gn", - "75":"gn", - "28":"gn" - }, - "institution_id":{ - "76":"CCCma", - "78":"MOHC", - "79":"MOHC", - "74":"CCCma", - "19":"CSIRO", - "33":"CSIRO", - "81":"MOHC", - "34":"CSIRO", - "77":"CCCma", - "80":"MOHC", - "75":"CCCma", - "28":"CSIRO" - }, - "nominal_resolution":{ - "76":"100 km", - "78":"250 km", - "79":"100 km", - "74":"500 km", - "19":"250 km", - "33":"250 km", - "81":"250 km", - "34":"250 km", - "77":"500 km", - "80":"100 km", - "75":"100 km", - "28":"250 km" - }, - "parent_activity_id":{ - "76":"CMIP", - "78":"CMIP", - "79":"CMIP", - "74":"CMIP", - "19":"CMIP", - "33":"CMIP", - "81":"CMIP", - "34":"CMIP", - "77":"CMIP", - "80":"CMIP", - "75":"CMIP", - "28":"CMIP" - }, - "parent_experiment_id":{ - "76":"piControl", - "78":"piControl", - "79":"piControl", - "74":"piControl", - "19":"piControl", - "33":"piControl", - "81":"piControl-spinup", - "34":"piControl", - "77":"piControl", - "80":"piControl-spinup", - "75":"piControl", - "28":"piControl" - }, - "parent_source_id":{ - "76":"CanESM5", - "78":"HadGEM3-GC31-LL", - "79":"HadGEM3-GC31-LL", - "74":"CanESM5", - "19":"ACCESS-ESM1-5", - "33":"ACCESS-ESM1-5", - "81":"HadGEM3-GC31-LL", - "34":"ACCESS-ESM1-5", - "77":"CanESM5", - "80":"HadGEM3-GC31-LL", - "75":"CanESM5", - "28":"ACCESS-ESM1-5" - }, - "parent_time_units":{ - "76":"days since 1850-01-01 0:0:0.0", - "78":"days since 1850-01-01-00-00-00", - "79":"days since 1850-01-01", - "74":"days since 1850-01-01 0:0:0.0", - "19":"days since 0101-1-1", - "33":"days since 0101-1-1", - "81":"days since 1850-01-01-00-00-00", - "34":"days since 0101-1-1", - "77":"days since 1850-01-01 0:0:0.0", - "80":"days since 1850-01-01-00-00-00", - "75":"days since 1850-01-01 0:0:0.0", - "28":"days since 0101-1-1" - }, - "parent_variant_label":{ - "76":"r1i1p1f1", - "78":"r1i1p1f1", - "79":"r1i1p1f1", - "74":"r1i1p1f1", - "19":"r1i1p1f1", - "33":"r1i1p1f1", - "81":"r1i1p1f1", - "34":"r1i1p1f1", - "77":"r1i1p1f1", - "80":"r1i1p1f1", - "75":"r1i1p1f1", - "28":"r1i1p1f1" - }, - "product":{ - "76":"model-output", - "78":"model-output", - "79":"model-output", - "74":"model-output", - "19":"model-output", - "33":"model-output", - "81":"model-output", - "34":"model-output", - "77":"model-output", - "80":"model-output", - "75":"model-output", - "28":"model-output" - }, - "realm":{ - "76":"seaIce", - "78":"atmos", - "79":"seaIce", - "74":"atmos", - "19":"atmos", - "33":"seaIce", - "81":"atmos", - "34":"atmos", - "77":"atmos", - "80":"ocean", - "75":"ocean", - "28":"ocean" - }, - "source_id":{ - "76":"CanESM5", - "78":"HadGEM3-GC31-LL", - "79":"HadGEM3-GC31-LL", - "74":"CanESM5", - "19":"ACCESS-ESM1-5", - "33":"ACCESS-ESM1-5", - "81":"HadGEM3-GC31-LL", - "34":"ACCESS-ESM1-5", - "77":"CanESM5", - "80":"HadGEM3-GC31-LL", - "75":"CanESM5", - "28":"ACCESS-ESM1-5" - }, - "source_type":{ - "76":"AOGCM", - "78":"AOGCM AER", - "79":"AOGCM AER", - "74":"AOGCM", - "19":"AOGCM", - "33":"AOGCM", - "81":"AOGCM AER", - "34":"AOGCM", - "77":"AOGCM", - "80":"AOGCM AER", - "75":"AOGCM", - "28":"AOGCM" - }, - "sub_experiment":{ - "76":"none", - "78":"none", - "79":"none", - "74":"none", - "19":"none", - "33":"none", - "81":"none", - "34":"none", - "77":"none", - "80":"none", - "75":"none", - "28":"none" - }, - "sub_experiment_id":{ - "76":"none", - "78":"none", - "79":"none", - "74":"none", - "19":"none", - "33":"none", - "81":"none", - "34":"none", - "77":"none", - "80":"none", - "75":"none", - "28":"none" - }, - "table_id":{ - "76":"SImon", - "78":"Amon", - "79":"SImon", - "74":"Amon", - "19":"Amon", - "33":"SImon", - "81":"fx", - "34":"fx", - "77":"fx", - "80":"Ofx", - "75":"Ofx", - "28":"Ofx" - }, - "variable_id":{ - "76":"siconc", - "78":"tas", - "79":"siconc", - "74":"tas", - "19":"tas", - "33":"siconc", - "81":"areacella", - "34":"areacella", - "77":"areacella", - "80":"areacello", - "75":"areacello", - "28":"areacello" - }, - "variant_label":{ - "76":"r1i1p1f1", - "78":"r1i1p1f3", - "79":"r1i1p1f3", - "74":"r1i1p1f1", - "19":"r1i1p1f1", - "33":"r1i1p1f1", - "81":"r1i1p1f1", - "34":"r1i1p1f1", - "77":"r1i1p1f1", - "80":"r1i1p1f1", - "75":"r1i1p1f1", - "28":"r1i1p1f1" - }, - "member_id":{ - "76":"r1i1p1f1", - "78":"r1i1p1f3", - "79":"r1i1p1f3", - "74":"r1i1p1f1", - "19":"r1i1p1f1", - "33":"r1i1p1f1", - "81":"r1i1p1f1", - "34":"r1i1p1f1", - "77":"r1i1p1f1", - "80":"r1i1p1f1", - "75":"r1i1p1f1", - "28":"r1i1p1f1" - }, - "vertical_levels":{ - "76":1, - "78":1, - "79":1, - "74":1, - "19":1, - "33":1, - "81":1, - "34":1, - "77":1, - "80":1, - "75":1, - "28":1 - }, - "version":{ - "76":"v20190429", - "78":"v20190624", - "79":"v20200330", - "74":"v20190429", - "19":"v20191115", - "33":"v20200817", - "81":"v20190709", - "34":"v20191115", - "77":"v20190429", - "80":"v20190709", - "75":"v20190429", - "28":"v20191115" - }, - "standard_name":{ - "76":"sea_ice_area_fraction", - "78":"air_temperature", - "79":"sea_ice_area_fraction", - "74":"air_temperature", - "19":"air_temperature", - "33":"sea_ice_area_fraction", - "81":"cell_area", - "34":"cell_area", - "77":"cell_area", - "80":"cell_area", - "75":"cell_area", - "28":"cell_area" - }, - "long_name":{ - "76":"Sea-ice Area Percentage (Ocean Grid)", - "78":"Near-Surface Air Temperature", - "79":"Sea-ice Area Percentage (Ocean Grid)", - "74":"Near-Surface Air Temperature", - "19":"Near-Surface Air Temperature", - "33":"Sea-Ice Area Percentage (Ocean Grid)", - "81":"Grid-Cell Area for Atmospheric Grid Variables", - "34":"Grid-Cell Area for Atmospheric Grid Variables", - "77":"Grid-Cell Area for Atmospheric Grid Variables", - "80":"Grid-Cell Area for Ocean Variables", - "75":"Grid-Cell Area for Ocean Variables", - "28":"Grid-Cell Area for Ocean Variables" - }, - "units":{ - "76":"%", - "78":"K", - "79":"%", - "74":"K", - "19":"K", - "33":"%", - "81":"m2", - "34":"m2", - "77":"m2", - "80":"m2", - "75":"m2", - "28":"m2" - }, - "finalised":{ - "76":true, - "78":true, - "79":true, - "74":true, - "19":true, - "33":true, - "81":true, - "34":true, - "77":true, - "80":true, - "75":true, - "28":true - }, - "instance_id":{ - "76":"CMIP6.CMIP.CCCma.CanESM5.historical.r1i1p1f1.SImon.siconc.gn.v20190429", - "78":"CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.historical.r1i1p1f3.Amon.tas.gn.v20190624", - "79":"CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.historical.r1i1p1f3.SImon.siconc.gn.v20200330", - "74":"CMIP6.CMIP.CCCma.CanESM5.historical.r1i1p1f1.Amon.tas.gn.v20190429", - "19":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Amon.tas.gn.v20191115", - "33":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.SImon.siconc.gn.v20200817", - "81":"CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl.r1i1p1f1.fx.areacella.gn.v20190709", - "34":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.fx.areacella.gn.v20191115", - "77":"CMIP6.CMIP.CCCma.CanESM5.historical.r1i1p1f1.fx.areacella.gn.v20190429", - "80":"CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl.r1i1p1f1.Ofx.areacello.gn.v20190709", - "75":"CMIP6.CMIP.CCCma.CanESM5.historical.r1i1p1f1.Ofx.areacello.gn.v20190429", - "28":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical.r1i1p1f1.Ofx.areacello.gn.v20191115" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_tcr.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_tcr.json deleted file mode 100644 index 5a44afb44..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_tcr.json +++ /dev/null @@ -1,146 +0,0 @@ -{ - "start_time": { - "94": "0101-01-16T12:00:00.000", - "92": "0101-01-16T12:00:00.000" - }, - "end_time": { - "94": "0250-12-16T12:00:00.000", - "92": "0600-12-16T12:00:00.000" - }, - "path": { - "94": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/1pctCO2/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_1pctCO2_r1i1p1f1_gn_010101-025012.nc", - "92": "/home/bandela/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/piControl/r1i1p1f1/Amon/tas/gn/v20210316/tas_Amon_ACCESS-ESM1-5_piControl_r1i1p1f1_gn_010101-060012.nc" - }, - "activity_id": { - "94": "CMIP", - "92": "CMIP" - }, - "branch_method": { - "94": "standard", - "92": "standard" - }, - "branch_time_in_child": { - "94": 0.0, - "92": 0.0 - }, - "branch_time_in_parent": { - "94": 0.0, - "92": 36524.0 - }, - "experiment": { - "94": "1 percent per year increase in CO2", - "92": "pre-industrial control" - }, - "experiment_id": { - "94": "1pctCO2", - "92": "piControl" - }, - "frequency": { - "94": "mon", - "92": "mon" - }, - "grid": { - "94": "native atmosphere N96 grid (145x192 latxlon)", - "92": "native atmosphere N96 grid (145x192 latxlon)" - }, - "grid_label": { - "94": "gn", - "92": "gn" - }, - "institution_id": { - "94": "CSIRO", - "92": "CSIRO" - }, - "nominal_resolution": { - "94": "250 km", - "92": "250 km" - }, - "parent_activity_id": { - "94": "CMIP", - "92": "CMIP" - }, - "parent_experiment_id": { - "94": "piControl", - "92": "piControl-spinup" - }, - "parent_source_id": { - "94": "ACCESS-ESM1-5", - "92": "ACCESS-ESM1-5" - }, - "parent_time_units": { - "94": "days since 0101-01-01", - "92": "days since 0001-01-01" - }, - "parent_variant_label": { - "94": "r1i1p1f1", - "92": "r1i1p1f1" - }, - "product": { - "94": "model-output", - "92": "model-output" - }, - "realm": { - "94": "atmos", - "92": "atmos" - }, - "source_id": { - "94": "ACCESS-ESM1-5", - "92": "ACCESS-ESM1-5" - }, - "source_type": { - "94": "AOGCM", - "92": "AOGCM" - }, - "sub_experiment": { - "94": "none", - "92": "none" - }, - "sub_experiment_id": { - "94": "none", - "92": "none" - }, - "table_id": { - "94": "Amon", - "92": "Amon" - }, - "variable_id": { - "94": "tas", - "92": "tas" - }, - "variant_label": { - "94": "r1i1p1f1", - "92": "r1i1p1f1" - }, - "member_id": { - "94": "r1i1p1f1", - "92": "r1i1p1f1" - }, - "standard_name": { - "94": "air_temperature", - "92": "air_temperature" - }, - "long_name": { - "94": "Near-Surface Air Temperature", - "92": "Near-Surface Air Temperature" - }, - "units": { - "94": "K", - "92": "K" - }, - "vertical_levels": { - "94": 1, - "92": 1 - }, - "init_year": { - "94": null, - "92": null - }, - "version": { - "94": "v20191115", - "92": "v20210316" - }, - "instance_id": { - "94": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.1pctCO2.r1i1p1f1.Amon.tas.gn.v20191115", - "92": "CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.piControl.r1i1p1f1.Amon.tas.gn.v20210316" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_tcre.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_tcre.json deleted file mode 100644 index 21ed719e9..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_tcre.json +++ /dev/null @@ -1,496 +0,0 @@ -[ - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"1869-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MPI-M\/MPI-ESM1-2-LR\/esm-piControl\/r1i1p1f1\/Amon\/tas\/gn\/v20190815\/tas_Amon_MPI-ESM1-2-LR_esm-piControl_r1i1p1f1_gn_185001-186912.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":146097.0, - "experiment":"pre-industrial control simulation with CO2 concentration calculated", - "experiment_id":"esm-piControl", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl-spinup", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.CMIP.MPI-M.MPI-ESM1-2-LR.esm-piControl.r1i1p1f1.Amon.tas.gn.v20190815" - }, - { - "start_time":"1870-01-16T12:00:00.000", - "end_time":"1889-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MPI-M\/MPI-ESM1-2-LR\/esm-piControl\/r1i1p1f1\/Amon\/tas\/gn\/v20190815\/tas_Amon_MPI-ESM1-2-LR_esm-piControl_r1i1p1f1_gn_187001-188912.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":146097.0, - "experiment":"pre-industrial control simulation with CO2 concentration calculated", - "experiment_id":"esm-piControl", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl-spinup", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.CMIP.MPI-M.MPI-ESM1-2-LR.esm-piControl.r1i1p1f1.Amon.tas.gn.v20190815" - }, - { - "start_time":"1890-01-16T12:00:00.000", - "end_time":"1909-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MPI-M\/MPI-ESM1-2-LR\/esm-piControl\/r1i1p1f1\/Amon\/tas\/gn\/v20190815\/tas_Amon_MPI-ESM1-2-LR_esm-piControl_r1i1p1f1_gn_189001-190912.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":146097.0, - "experiment":"pre-industrial control simulation with CO2 concentration calculated", - "experiment_id":"esm-piControl", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl-spinup", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.CMIP.MPI-M.MPI-ESM1-2-LR.esm-piControl.r1i1p1f1.Amon.tas.gn.v20190815" - }, - { - "start_time":"1910-01-16T12:00:00.000", - "end_time":"1929-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MPI-M\/MPI-ESM1-2-LR\/esm-piControl\/r1i1p1f1\/Amon\/tas\/gn\/v20190815\/tas_Amon_MPI-ESM1-2-LR_esm-piControl_r1i1p1f1_gn_191001-192912.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":146097.0, - "experiment":"pre-industrial control simulation with CO2 concentration calculated", - "experiment_id":"esm-piControl", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl-spinup", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.CMIP.MPI-M.MPI-ESM1-2-LR.esm-piControl.r1i1p1f1.Amon.tas.gn.v20190815" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"1869-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/MPI-M\/MPI-ESM1-2-LR\/esm-1pctCO2\/r1i1p1f1\/Amon\/fco2antt\/gn\/v20190815\/fco2antt_Amon_MPI-ESM1-2-LR_esm-1pctCO2_r1i1p1f1_gn_185001-186912.nc", - "activity_id":"C4MIP CDRMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"emissions driven 1% run", - "experiment_id":"esm-1pctCO2", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"fco2antt", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", - "long_name":"Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2", - "units":"kg m-2 s-1", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.C4MIP CDRMIP.MPI-M.MPI-ESM1-2-LR.esm-1pctCO2.r1i1p1f1.Amon.fco2antt.gn.v20190815" - }, - { - "start_time":"1870-01-16T12:00:00.000", - "end_time":"1889-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/MPI-M\/MPI-ESM1-2-LR\/esm-1pctCO2\/r1i1p1f1\/Amon\/fco2antt\/gn\/v20190815\/fco2antt_Amon_MPI-ESM1-2-LR_esm-1pctCO2_r1i1p1f1_gn_187001-188912.nc", - "activity_id":"C4MIP CDRMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"emissions driven 1% run", - "experiment_id":"esm-1pctCO2", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"fco2antt", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", - "long_name":"Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2", - "units":"kg m-2 s-1", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.C4MIP CDRMIP.MPI-M.MPI-ESM1-2-LR.esm-1pctCO2.r1i1p1f1.Amon.fco2antt.gn.v20190815" - }, - { - "start_time":"1890-01-16T12:00:00.000", - "end_time":"1909-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/MPI-M\/MPI-ESM1-2-LR\/esm-1pctCO2\/r1i1p1f1\/Amon\/fco2antt\/gn\/v20190815\/fco2antt_Amon_MPI-ESM1-2-LR_esm-1pctCO2_r1i1p1f1_gn_189001-190912.nc", - "activity_id":"C4MIP CDRMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"emissions driven 1% run", - "experiment_id":"esm-1pctCO2", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"fco2antt", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", - "long_name":"Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2", - "units":"kg m-2 s-1", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.C4MIP CDRMIP.MPI-M.MPI-ESM1-2-LR.esm-1pctCO2.r1i1p1f1.Amon.fco2antt.gn.v20190815" - }, - { - "start_time":"1910-01-16T12:00:00.000", - "end_time":"1914-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/MPI-M\/MPI-ESM1-2-LR\/esm-1pctCO2\/r1i1p1f1\/Amon\/fco2antt\/gn\/v20190815\/fco2antt_Amon_MPI-ESM1-2-LR_esm-1pctCO2_r1i1p1f1_gn_191001-191412.nc", - "activity_id":"C4MIP CDRMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"emissions driven 1% run", - "experiment_id":"esm-1pctCO2", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"fco2antt", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"tendency_of_atmosphere_mass_content_of_carbon_dioxide_expressed_as_carbon_due_to_anthropogenic_emission", - "long_name":"Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2", - "units":"kg m-2 s-1", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.C4MIP CDRMIP.MPI-M.MPI-ESM1-2-LR.esm-1pctCO2.r1i1p1f1.Amon.fco2antt.gn.v20190815" - }, - { - "start_time":"1850-01-16T12:00:00.000", - "end_time":"1869-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/MPI-M\/MPI-ESM1-2-LR\/esm-1pctCO2\/r1i1p1f1\/Amon\/tas\/gn\/v20190815\/tas_Amon_MPI-ESM1-2-LR_esm-1pctCO2_r1i1p1f1_gn_185001-186912.nc", - "activity_id":"C4MIP CDRMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"emissions driven 1% run", - "experiment_id":"esm-1pctCO2", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.C4MIP CDRMIP.MPI-M.MPI-ESM1-2-LR.esm-1pctCO2.r1i1p1f1.Amon.tas.gn.v20190815" - }, - { - "start_time":"1870-01-16T12:00:00.000", - "end_time":"1889-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/MPI-M\/MPI-ESM1-2-LR\/esm-1pctCO2\/r1i1p1f1\/Amon\/tas\/gn\/v20190815\/tas_Amon_MPI-ESM1-2-LR_esm-1pctCO2_r1i1p1f1_gn_187001-188912.nc", - "activity_id":"C4MIP CDRMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"emissions driven 1% run", - "experiment_id":"esm-1pctCO2", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.C4MIP CDRMIP.MPI-M.MPI-ESM1-2-LR.esm-1pctCO2.r1i1p1f1.Amon.tas.gn.v20190815" - }, - { - "start_time":"1890-01-16T12:00:00.000", - "end_time":"1909-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/MPI-M\/MPI-ESM1-2-LR\/esm-1pctCO2\/r1i1p1f1\/Amon\/tas\/gn\/v20190815\/tas_Amon_MPI-ESM1-2-LR_esm-1pctCO2_r1i1p1f1_gn_189001-190912.nc", - "activity_id":"C4MIP CDRMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"emissions driven 1% run", - "experiment_id":"esm-1pctCO2", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.C4MIP CDRMIP.MPI-M.MPI-ESM1-2-LR.esm-1pctCO2.r1i1p1f1.Amon.tas.gn.v20190815" - }, - { - "start_time":"1910-01-16T12:00:00.000", - "end_time":"1914-12-16T12:00:00.000", - "path":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/MPI-M\/MPI-ESM1-2-LR\/esm-1pctCO2\/r1i1p1f1\/Amon\/tas\/gn\/v20190815\/tas_Amon_MPI-ESM1-2-LR_esm-1pctCO2_r1i1p1f1_gn_191001-191412.nc", - "activity_id":"C4MIP CDRMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":0.0, - "experiment":"emissions driven 1% run", - "experiment_id":"esm-1pctCO2", - "frequency":"mon", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"Amon", - "variable_id":"tas", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"air_temperature", - "long_name":"Near-Surface Air Temperature", - "units":"K", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.C4MIP CDRMIP.MPI-M.MPI-ESM1-2-LR.esm-1pctCO2.r1i1p1f1.Amon.tas.gn.v20190815" - }, - { - "start_time":null, - "end_time":null, - "path":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/MPI-M\/MPI-ESM1-2-LR\/esm-piControl\/r1i1p1f1\/fx\/areacella\/gn\/v20190815\/areacella_fx_MPI-ESM1-2-LR_esm-piControl_r1i1p1f1_gn.nc", - "activity_id":"CMIP", - "branch_method":"standard", - "branch_time_in_child":0.0, - "branch_time_in_parent":146097.0, - "experiment":"pre-industrial control simulation with CO2 concentration calculated", - "experiment_id":"esm-piControl", - "frequency":"fx", - "grid":"gn", - "grid_label":"gn", - "institution_id":"MPI-M", - "nominal_resolution":"250 km", - "parent_activity_id":"CMIP", - "parent_experiment_id":"esm-piControl-spinup", - "parent_source_id":"MPI-ESM1-2-LR", - "parent_time_units":"days since 1850-1-1 00:00:00", - "parent_variant_label":"r1i1p1f1", - "product":"model-output", - "realm":"atmos", - "source_id":"MPI-ESM1-2-LR", - "source_type":"AOGCM BGC", - "sub_experiment":"none", - "sub_experiment_id":"none", - "table_id":"fx", - "variable_id":"areacella", - "variant_label":"r1i1p1f1", - "member_id":"r1i1p1f1", - "standard_name":"cell_area", - "long_name":"Grid-Cell Area for Atmospheric Grid Variables", - "units":"m2", - "vertical_levels":1, - "init_year":null, - "version":"v20190815", - "instance_id":"CMIP6.CMIP.MPI-M.MPI-ESM1-2-LR.esm-piControl.r1i1p1f1.fx.areacella.gn.v20190815" - } -] diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_zec.json b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_zec.json deleted file mode 100644 index 0f6066061..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_zec.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "start_time":{ - "215":"0168-01-16T12:00:00.000", - "118":"0101-01-16T12:00:00.000", - "216":null, - "119":null - }, - "end_time":{ - "215":"0268-12-16T12:00:00.000", - "118":"0250-12-16T12:00:00.000", - "216":null, - "119":null - }, - "path":{ - "215":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/CSIRO\/ACCESS-ESM1-5\/esm-1pct-brch-1000PgC\/r1i1p1f1\/Amon\/tas\/gn\/v20191206\/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc", - "118":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/1pctCO2\/r1i1p1f1\/Amon\/tas\/gn\/v20191115\/tas_Amon_ACCESS-ESM1-5_1pctCO2_r1i1p1f1_gn_010101-025012.nc", - "216":"\/home\/bandela\/climate_data\/CMIP6\/C4MIP\/CSIRO\/ACCESS-ESM1-5\/esm-1pct-brch-1000PgC\/r1i1p1f1\/fx\/areacella\/gn\/v20191206\/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc", - "119":"\/home\/bandela\/climate_data\/CMIP6\/CMIP\/CSIRO\/ACCESS-ESM1-5\/1pctCO2\/r1i1p1f1\/fx\/areacella\/gn\/v20191115\/areacella_fx_ACCESS-ESM1-5_1pctCO2_r1i1p1f1_gn.nc" - }, - "activity_id":{ - "215":"C4MIP CDRMIP", - "118":"CMIP", - "216":"C4MIP CDRMIP", - "119":"CMIP" - }, - "branch_method":{ - "215":"standard", - "118":"standard", - "216":"standard", - "119":"standard" - }, - "branch_time_in_child":{ - "215":24471.0, - "118":0.0, - "216":24471.0, - "119":0.0 - }, - "branch_time_in_parent":{ - "215":24471.0, - "118":0.0, - "216":24471.0, - "119":0.0 - }, - "experiment":{ - "215":"zero emissions simulation branched from 1% run after 1000 PgC cumulative emission", - "118":"1 percent per year increase in CO2", - "216":"zero emissions simulation branched from 1% run after 1000 PgC cumulative emission", - "119":"1 percent per year increase in CO2" - }, - "experiment_id":{ - "215":"esm-1pct-brch-1000PgC", - "118":"1pctCO2", - "216":"esm-1pct-brch-1000PgC", - "119":"1pctCO2" - }, - "frequency":{ - "215":"mon", - "118":"mon", - "216":"fx", - "119":"fx" - }, - "grid":{ - "215":"native atmosphere N96 grid (145x192 latxlon)", - "118":"native atmosphere N96 grid (145x192 latxlon)", - "216":"native atmosphere N96 grid (145x192 latxlon)", - "119":"native atmosphere N96 grid (145x192 latxlon)" - }, - "grid_label":{ - "215":"gn", - "118":"gn", - "216":"gn", - "119":"gn" - }, - "institution_id":{ - "215":"CSIRO", - "118":"CSIRO", - "216":"CSIRO", - "119":"CSIRO" - }, - "nominal_resolution":{ - "215":"250 km", - "118":"250 km", - "216":"250 km", - "119":"250 km" - }, - "parent_activity_id":{ - "215":"CMIP", - "118":"CMIP", - "216":"CMIP", - "119":"CMIP" - }, - "parent_experiment_id":{ - "215":"1pctCO2", - "118":"piControl", - "216":"1pctCO2", - "119":"piControl" - }, - "parent_source_id":{ - "215":"ACCESS-ESM1-5", - "118":"ACCESS-ESM1-5", - "216":"ACCESS-ESM1-5", - "119":"ACCESS-ESM1-5" - }, - "parent_time_units":{ - "215":"days since 0101-01-01", - "118":"days since 0101-01-01", - "216":"days since 0101-01-01", - "119":"days since 0101-01-01" - }, - "parent_variant_label":{ - "215":"r1i1p1f1", - "118":"r1i1p1f1", - "216":"r1i1p1f1", - "119":"r1i1p1f1" - }, - "product":{ - "215":"model-output", - "118":"model-output", - "216":"model-output", - "119":"model-output" - }, - "realm":{ - "215":"atmos", - "118":"atmos", - "216":"atmos", - "119":"atmos" - }, - "source_id":{ - "215":"ACCESS-ESM1-5", - "118":"ACCESS-ESM1-5", - "216":"ACCESS-ESM1-5", - "119":"ACCESS-ESM1-5" - }, - "source_type":{ - "215":"AOGCM BGC", - "118":"AOGCM", - "216":"AOGCM BGC", - "119":"AOGCM" - }, - "sub_experiment":{ - "215":"none", - "118":"none", - "216":"none", - "119":"none" - }, - "sub_experiment_id":{ - "215":"none", - "118":"none", - "216":"none", - "119":"none" - }, - "table_id":{ - "215":"Amon", - "118":"Amon", - "216":"fx", - "119":"fx" - }, - "variable_id":{ - "215":"tas", - "118":"tas", - "216":"areacella", - "119":"areacella" - }, - "variant_label":{ - "215":"r1i1p1f1", - "118":"r1i1p1f1", - "216":"r1i1p1f1", - "119":"r1i1p1f1" - }, - "member_id":{ - "215":"r1i1p1f1", - "118":"r1i1p1f1", - "216":"r1i1p1f1", - "119":"r1i1p1f1" - }, - "standard_name":{ - "215":"air_temperature", - "118":"air_temperature", - "216":"cell_area", - "119":"cell_area" - }, - "long_name":{ - "215":"Near-Surface Air Temperature", - "118":"Near-Surface Air Temperature", - "216":"Grid-Cell Area for Atmospheric Grid Variables", - "119":"Grid-Cell Area for Atmospheric Grid Variables" - }, - "units":{ - "215":"K", - "118":"K", - "216":"m2", - "119":"m2" - }, - "vertical_levels":{ - "215":1, - "118":1, - "216":1, - "119":1 - }, - "init_year":{ - "215":null, - "118":null, - "216":null, - "119":null - }, - "version":{ - "215":"v20191206", - "118":"v20191115", - "216":"v20191206", - "119":"v20191115" - }, - "instance_id":{ - "215":"CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206", - "118":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.1pctCO2.r1i1p1f1.Amon.tas.gn.v20191115", - "216":"CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.fx.areacella.gn.v20191206", - "119":"CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.1pctCO2.r1i1p1f1.fx.areacella.gn.v20191115" - } -} diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_climate_at_global_warming_levels.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_climate_at_global_warming_levels.yml new file mode 100644 index 000000000..8db5bc409 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_climate_at_global_warming_levels.yml @@ -0,0 +1,181 @@ +documentation: + title: Diagnostic to calculate Global Warming Level exceedance years. + description: 'Recipe for calculating global warming level exceedances for individual + model + + and ensemble members. + + ' + authors: + - swaminathan_ranjini + maintainer: + - swaminathan_ranjini + references: + - swaminathan22jclim +preprocessors: + calculate_anomalies: + custom_order: true + area_statistics: + operator: mean + annual_statistics: + operator: mean + anomalies: + period: full + reference: + start_year: 1850 + start_month: 1 + start_day: 1 + end_year: 1900 + end_month: 12 + end_day: 31 + standardize: false + extract_time: + start_year: 2000 + start_month: 1 + start_day: 1 + end_year: 2100 + end_month: 12 + end_day: 31 + multi_model_gwl_stats: + custom_order: true + extract_time: + start_year: 2000 + start_month: 1 + start_day: 1 + end_year: 2100 + end_month: 12 + end_day: 31 + annual_statistics: + operator: mean + regrid: + target_grid: 1x1 + scheme: linear +GWL_PARAMS: + window_size: 21 + gwls: + - 1.5 + - 2.0 + - 3.0 + - 4.0 + - 5.0 +GWL: + window_size: 21 + gwls: + - 1.5 + - 2.0 + - 3.0 + - 4.0 + - 5.0 + script: gwls/calculate_gwl_exceedance_years.py +PLOT_STATS: + window_size: 21 + gwls: + - 1.5 + - 2.0 + - 3.0 + - 4.0 + - 5.0 + script: gwls/plot_gwl_exceedance_mm_stats.py + pattern: GWL_exceedance_years.csv +diagnostics: + calculate_gwl_exceedance_years: + description: Calculate Global Warming Level exceedance years from smoothed temperature + anomalies. + variables: + tas_anomaly: + short_name: tas + preprocessor: calculate_anomalies + timerange: 1850/2100 + scripts: + gwl_exceedance_calculation: + window_size: 21 + gwls: + - 1.5 + - 2.0 + - 3.0 + - 4.0 + - 5.0 + script: gwls/calculate_gwl_exceedance_years.py + gwl_mean_plots_tas: + description: Plot multimodel mean and standard deviation for surface temperature + at specific Global Warming Levels. + variables: + tas: + short_name: tas + preprocessor: multi_model_gwl_stats + timerange: 2000/2100 + scripts: + plot_gwl_stats: + window_size: 21 + gwls: + - 1.5 + - 2.0 + - 3.0 + - 4.0 + - 5.0 + script: gwls/plot_gwl_exceedance_mm_stats.py + pattern: GWL_exceedance_years.csv + ancestors: + - calculate_gwl_exceedance_years/gwl_exceedance_calculation + - gwl_mean_plots_tas/tas + quickplot: + plot_type: map + cmap_mean: RdBu_r + cmap_stdev: YlOrRd + title_var: Temperature + mean_level_params: + - -60.0 + - 55.0 + - 5.0 + stdev_level_params: + - 0.0 + - 11.0 + - 1.0 + gwl_mean_plots_pr: + description: Plot multimodel mean and standard deviation for precipitation at + specific Global Warming Levels. + variables: + pr: + short_name: pr + preprocessor: multi_model_gwl_stats + timerange: 2000/2100 + scripts: + plot_gwl_stats: + window_size: 21 + gwls: + - 1.5 + - 2.0 + - 3.0 + - 4.0 + - 5.0 + script: gwls/plot_gwl_exceedance_mm_stats.py + pattern: GWL_exceedance_years.csv + ancestors: + - calculate_gwl_exceedance_years/gwl_exceedance_calculation + - gwl_mean_plots_pr/pr + quickplot: + plot_type: map + cmap_mean: YlGnBu + cmap_stdev: YlGnBu + title_var: Precipitation + mean_level_params: + - 0.0 + - 18.0 + - 2.0 + stdev_level_params: + - 0.0 + - 11.0 + - 1.0 +datasets: +- project: CMIP6 + activity: + - CMIP + - ScenarioMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: + - historical + - ssp126 + grid: gn + mip: Amon diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_climate_drivers_for_fire.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_climate_drivers_for_fire.yml new file mode 100644 index 000000000..3fa32c46e --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_climate_drivers_for_fire.yml @@ -0,0 +1,76 @@ +documentation: + description: 'Recipe that plots diagnostics regarding climate drivers for fire. + + The diagnostic uses code for the ConFire model from the following GitHub repository: + + https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF + + ' + title: Climate drivers for fire. + authors: + - lenhardt_julien + - kelley_douglas + maintainer: + - lenhardt_julien +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + start_year: 2013 + end_year: 2014 +preprocessors: + preproc: + regrid: + target_grid: 2.5x2.5 + scheme: nearest + mask_landsea: + mask_out: sea + preproc_fraction: + regrid: + target_grid: 2.5x2.5 + scheme: nearest + mask_landsea: + mask_out: sea + convert_units: + units: 1 +diagnostics: + fire_evaluation: + description: Climate drivers for fire + variables: + pr: + mip: Amon + preprocessor: preproc + tasmax: + mip: Amon + preprocessor: preproc + treeFrac: + mip: Lmon + preprocessor: preproc_fraction + vegFrac: + mip: Emon + preprocessor: preproc_fraction + cVeg: + mip: Lmon + preprocessor: preproc + tas: + mip: Amon + preprocessor: preproc + hurs: + mip: Amon + preprocessor: preproc + scripts: + fire_evaluation: + script: fire/fire_diagnostic.py + confire_param: https://zenodo.org/records/14917245 + var_order: + - pr + - tasmax + - treeFrac + - vegFrac + - vpd + - cVeg + remove_confire_files: true diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_radiative_effects.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_radiative_effects.yml new file mode 100644 index 000000000..b7b145c69 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_radiative_effects.yml @@ -0,0 +1,125 @@ +documentation: + title: Model evaluation with focus on the cloud radiative effect. + description: 'Plot climatologies and zonal mean profiles of cloud radiative effects + (sw + lw) for the REF. + + ' + authors: + - bock_lisa + - lauer_axel + maintainer: + - bock_lisa +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon +timerange_for_models: 20010101T000000/20141216T120000 +preprocessors: + full_climatology: + climate_statistics: + period: full + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + zonal_mean: + climate_statistics: + period: full + regrid: + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + target_grid: 1x1 + zonal_statistics: + operator: mean +diagnostics: + plot_maps: + description: Plot lwcre climatology maps including reference datasets. + variables: + lwcre: + timerange: 1996/2014 + mip: Amon + preprocessor: full_climatology + derive: true + swcre: + timerange: 1996/2014 + mip: Amon + preprocessor: full_climatology + derive: true + additional_datasets: + - dataset: CERES-EBAF + project: OBS + type: sat + version: Ed4.2 + tier: 2 + start_year: 2000 + end_year: 2023 + reference_for_monitor_diags: true + scripts: + plot: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + plot_filename: '{plot_type}_{real_name}_{dataset}_{mip}' + plots: + map: + common_cbar: true + x_pos_stats_avg: -0.1 + fontsize: 10 + plot_profiles: + description: Plot lwcre zonal mean including reference datasets. + variables: + lwcre: + timerange: 1996/2014 + mip: Amon + preprocessor: zonal_mean + derive: true + swcre: + timerange: 1996/2014 + mip: Amon + preprocessor: zonal_mean + derive: true + additional_datasets: + - dataset: CERES-EBAF + project: OBS + type: sat + version: Ed4.2 + tier: 2 + start_year: 2000 + end_year: 2023 + reference_for_monitor_diags: true + - dataset: ESACCI-CLOUD + project: OBS + type: sat + version: AVHRR-AMPM-fv3.0 + tier: 2 + start_year: 1996 + end_year: 2016 + - dataset: ISCCP-FH + project: OBS + type: sat + version: v0 + tier: 2 + start_year: 1996 + end_year: 2016 + scripts: + plot: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + plot_filename: '{plot_type}_{real_name}_{dataset}_{mip}' + plots: + variable_vs_lat: + legend_kwargs: + loc: upper right + plot_kwargs: + CERES-EBAF: + color: black + ESACCI-CLOUD: + color: black + linestyle: dashed + ISCCP-FH: + color: black + linestyle: dotted diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_cli_ta.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_cli_ta.yml new file mode 100644 index 000000000..ec5cbd143 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_cli_ta.yml @@ -0,0 +1,149 @@ +documentation: + title: Model evaluation with focus on clouds. + description: 'Plot 2D histograms using the Seaborn diagnostic in ESMValTool. + + ' + authors: + - bock_lisa + - lauer_axel + - andela_bouwe + maintainer: + - bock_lisa +timerange_for_data: + timerange: 1996/2014 +regridding: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted +levels_for_3d_vars: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear +preprocessors: + common_grid_clt: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_clivi_clwvi: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 0.01 + maximum: 0.2 + common_grid_lwcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_swcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: -200.0 + maximum: -1.0 + common_grid_pr: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: mm day-1 + mask_outside_range: + minimum: 0.1 + maximum: 4 + common_grid_levels_ta: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 200 + maximum: 280 + common_grid_levels_cli: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: g kg-1 + mask_outside_range: + minimum: 0.0001 + maximum: 0.005 +diagnostics: + plot_joint_cli_ta_model: + description: Scatterplot clt vs lwcre. + variables: + cli: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_levels_cli + ta: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_levels_ta + additional_datasets: + - project: CMIP6 + activity: CMIP + dataset: CESM2 + ensemble: r1i1p1f1 + institute: NCAR + exp: historical + grid: gn + mip: Amon + timerange: 20070115T120000/20141215T120000 + scripts: + plot: + script: seaborn_jointplot_histogram.py + x: cli + y: ta + bins: 20 + joint_kws: + vmax: 0.02 + cmap: YlGnBu + cbar: true + cbar_kws: + extend: max + marginal_kws: + color: darkturquoise + seaborn_settings: + style: ticks + rc: + axes.titlepad: 15.0 + suptitle: CMIP6 CESM2 r1i1p1f1 gn 20070115T120000/20141215T120000 + plot_filename: jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_20070115T120000-20141215T120000 diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_clivi_lwcre.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_clivi_lwcre.yml new file mode 100644 index 000000000..e78c2df5b --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_clivi_lwcre.yml @@ -0,0 +1,151 @@ +documentation: + title: Model evaluation with focus on clouds. + description: 'Plot 2D histograms using the Seaborn diagnostic in ESMValTool. + + ' + authors: + - bock_lisa + - lauer_axel + - andela_bouwe + maintainer: + - bock_lisa +timerange_for_data: + timerange: 1996/2014 +regridding: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted +levels_for_3d_vars: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear +preprocessors: + common_grid_clt: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_clivi_clwvi: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 0.01 + maximum: 0.2 + common_grid_lwcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_swcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: -200.0 + maximum: -1.0 + common_grid_pr: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: mm day-1 + mask_outside_range: + minimum: 0.1 + maximum: 4 + common_grid_levels_ta: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 200 + maximum: 280 + common_grid_levels_cli: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: g kg-1 + mask_outside_range: + minimum: 0.0001 + maximum: 0.005 +diagnostics: + plot_joint_clivi_lwcre_model: + description: Scatterplot clt vs lwcre. + variables: + clivi: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_clivi_clwvi + lwcre: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_lwcre + derive: true + force_derivation: false + additional_datasets: + - project: CMIP6 + activity: CMIP + dataset: CESM2 + ensemble: r1i1p1f1 + institute: NCAR + exp: historical + grid: gn + mip: Amon + timerange: 20070115T120000/20141215T120000 + scripts: + plot: + script: seaborn_jointplot_histogram.py + x: clivi + y: lwcre + bins: 20 + joint_kws: + vmax: 0.03 + cmap: YlGnBu + cbar: true + cbar_kws: + extend: max + marginal_kws: + color: darkturquoise + seaborn_settings: + style: ticks + rc: + axes.titlepad: 15.0 + suptitle: CMIP6 CESM2 r1i1p1f1 gn 20070115T120000/20141215T120000 + plot_filename: jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_20070115T120000-20141215T120000 diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_clt_swcre.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_clt_swcre.yml new file mode 100644 index 000000000..d84fd06ab --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_clt_swcre.yml @@ -0,0 +1,151 @@ +documentation: + title: Model evaluation with focus on clouds. + description: 'Plot 2D histograms using the Seaborn diagnostic in ESMValTool. + + ' + authors: + - bock_lisa + - lauer_axel + - andela_bouwe + maintainer: + - bock_lisa +timerange_for_data: + timerange: 1996/2014 +regridding: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted +levels_for_3d_vars: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear +preprocessors: + common_grid_clt: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_clivi_clwvi: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 0.01 + maximum: 0.2 + common_grid_lwcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_swcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: -200.0 + maximum: -1.0 + common_grid_pr: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: mm day-1 + mask_outside_range: + minimum: 0.1 + maximum: 4 + common_grid_levels_ta: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 200 + maximum: 280 + common_grid_levels_cli: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: g kg-1 + mask_outside_range: + minimum: 0.0001 + maximum: 0.005 +diagnostics: + plot_joint_clt_swcre_model: + description: Scatterplot clt vs swcre. + variables: + clt: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_clt + swcre: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_swcre + derive: true + force_derivation: false + additional_datasets: + - project: CMIP6 + activity: CMIP + dataset: CESM2 + ensemble: r1i1p1f1 + institute: NCAR + exp: historical + grid: gn + mip: Amon + timerange: 20070115T120000/20141215T120000 + scripts: + plot: + script: seaborn_jointplot_histogram.py + x: clt + y: swcre + bins: 20 + joint_kws: + vmax: 0.015 + cmap: YlGnBu + cbar: true + cbar_kws: + extend: max + marginal_kws: + color: darkturquoise + seaborn_settings: + style: ticks + rc: + axes.titlepad: 15.0 + suptitle: CMIP6 CESM2 r1i1p1f1 gn 20070115T120000/20141215T120000 + plot_filename: jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_20070115T120000-20141215T120000 diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_clwvi_pr.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_clwvi_pr.yml new file mode 100644 index 000000000..0081d842e --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_clwvi_pr.yml @@ -0,0 +1,149 @@ +documentation: + title: Model evaluation with focus on clouds. + description: 'Plot 2D histograms using the Seaborn diagnostic in ESMValTool. + + ' + authors: + - bock_lisa + - lauer_axel + - andela_bouwe + maintainer: + - bock_lisa +timerange_for_data: + timerange: 1996/2014 +regridding: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted +levels_for_3d_vars: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear +preprocessors: + common_grid_clt: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_clivi_clwvi: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 0.01 + maximum: 0.2 + common_grid_lwcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_swcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: -200.0 + maximum: -1.0 + common_grid_pr: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: mm day-1 + mask_outside_range: + minimum: 0.1 + maximum: 4 + common_grid_levels_ta: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 200 + maximum: 280 + common_grid_levels_cli: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: g kg-1 + mask_outside_range: + minimum: 0.0001 + maximum: 0.005 +diagnostics: + plot_joint_clwvi_pr_model: + description: Scatterplot clwvi vs pr. + variables: + clwvi: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_clivi_clwvi + pr: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_pr + additional_datasets: + - project: CMIP6 + activity: CMIP + dataset: CESM2 + ensemble: r1i1p1f1 + institute: NCAR + exp: historical + grid: gn + mip: Amon + timerange: 20070115T120000/20141215T120000 + scripts: + plot: + script: seaborn_jointplot_histogram.py + x: clwvi + y: pr + bins: 20 + joint_kws: + vmax: 0.03 + cmap: YlGnBu + cbar: true + cbar_kws: + extend: max + marginal_kws: + color: darkturquoise + seaborn_settings: + style: ticks + rc: + axes.titlepad: 15.0 + suptitle: CMIP6 CESM2 r1i1p1f1 gn 20070115T120000/20141215T120000 + plot_filename: jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_20070115T120000-20141215T120000 diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_reference.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_reference.yml new file mode 100644 index 000000000..0391ccaea --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_cloud_scatterplots_reference.yml @@ -0,0 +1,309 @@ +documentation: + title: Model evaluation with focus on clouds. + description: 'Plot 2D histograms using the Seaborn diagnostic in ESMValTool. + + ' + authors: + - bock_lisa + - lauer_axel + - andela_bouwe + maintainer: + - bock_lisa +timerange_for_data: + timerange: 1996/2014 +regridding: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted +levels_for_3d_vars: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear +preprocessors: + common_grid_clt: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_clivi_clwvi: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 0.01 + maximum: 0.2 + common_grid_lwcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 1.0 + maximum: 100.0 + common_grid_swcre: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: -200.0 + maximum: -1.0 + common_grid_pr: + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: mm day-1 + mask_outside_range: + minimum: 0.1 + maximum: 4 + common_grid_levels_ta: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + mask_outside_range: + minimum: 200 + maximum: 280 + common_grid_levels_cli: + extract_levels: + levels: + cmor_table: CMIP6 + coordinate: plev27 + coordinate: air_pressure + scheme: linear + regrid: + target_grid: 1x1 + scheme: + reference: esmf_regrid.schemes:ESMFAreaWeighted + custom_order: true + convert_units: + units: g kg-1 + mask_outside_range: + minimum: 0.0001 + maximum: 0.005 +diagnostics: + plot_joint_clt_swcre_ref: + description: Scatterplot clt vs swcre. + variables: + clt: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_clt + additional_datasets: + - dataset: ESACCI-CLOUD + project: OBS + type: sat + version: AVHRR-AMPM-fv3.0 + tier: 2 + alias: ESACCI-CLOUD + start_year: 2001 + end_year: 2016 + swcre: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_swcre + derive: true + force_derivation: false + additional_datasets: + - dataset: CERES-EBAF + project: OBS + type: sat + version: Ed4.2 + tier: 2 + alias: CERES-EBAF + start_year: 2001 + end_year: 2016 + scripts: + plot: + script: seaborn_jointplot_histogram.py + x: clt + y: swcre + bins: 20 + joint_kws: + vmax: 0.015 + cmap: YlGnBu + cbar: true + cbar_kws: + extend: max + marginal_kws: + color: darkturquoise + seaborn_settings: + style: ticks + rc: + axes.titlepad: 15.0 + suptitle: ESACCI-CLOUD / CERES-EBAF + plot_filename: jointplot_clt_swcre_ESACCI_CLOUD_CERES-EBAF + plot_joint_clwvi_pr_ref: + description: Scatterplot clwvi vs pr. + variables: + clwvi: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_clivi_clwvi + additional_datasets: + - dataset: ESACCI-CLOUD + project: OBS + type: sat + version: AVHRR-AMPM-fv3.0 + tier: 2 + alias: ESACCI-CLOUD + start_year: 1992 + end_year: 2016 + pr: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_pr + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + alias: GPCP-SG + timerange: 1992/2016 + scripts: + plot: + script: seaborn_jointplot_histogram.py + x: clwvi + y: pr + bins: 20 + joint_kws: + vmax: 0.03 + cmap: YlGnBu + cbar: true + cbar_kws: + extend: max + marginal_kws: + color: darkturquoise + seaborn_settings: + style: ticks + rc: + axes.titlepad: 15.0 + suptitle: ESACCI-CLOUD / GPCP-SG + plot_filename: jointplot_clwvi_pr_ESACCI-CLOUD_GPCP-SG + plot_joint_clivi_lwcre_ref: + description: Scatterplot clt vs lwcre. + variables: + clivi: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_clivi_clwvi + additional_datasets: + - dataset: ESACCI-CLOUD + project: OBS + type: sat + version: AVHRR-AMPM-fv3.0 + tier: 2 + alias: ESACCI-CLOUD + start_year: 2001 + end_year: 2016 + lwcre: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_lwcre + derive: true + force_derivation: false + additional_datasets: + - dataset: CERES-EBAF + project: OBS + type: sat + version: Ed4.2 + tier: 2 + alias: CERES-EBAF + start_year: 2001 + end_year: 2016 + scripts: + plot: + script: seaborn_jointplot_histogram.py + x: clivi + y: lwcre + bins: 20 + joint_kws: + vmax: 0.03 + cmap: YlGnBu + cbar: true + cbar_kws: + extend: max + marginal_kws: + color: darkturquoise + seaborn_settings: + style: ticks + rc: + axes.titlepad: 15.0 + suptitle: ESACCI-CLOUD / CERES-EBAF + plot_filename: jointplot_clivi_lwcre_ESACCI-CLOUD_CERES-EBAF + plot_joint_cli_ta_ref: + description: Scatterplot clt vs lwcre. + variables: + cli: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_levels_cli + additional_datasets: + - dataset: CALIPSO-ICECLOUD + project: OBS + type: sat + version: 1-00 + tier: 3 + alias: CALIPSO-ICECLOUD + start_year: 2007 + end_year: 2015 + ta: + timerange: 1996/2014 + mip: Amon + exp: historical + preprocessor: common_grid_levels_ta + additional_datasets: + - project: obs4MIPs + dataset: ERA-5 + frequency: mon + grid: gn + institute: ECMWF + timerange: 2007/2015 + alias: ERA-5 + scripts: + plot: + script: seaborn_jointplot_histogram.py + x: cli + y: ta + bins: 20 + joint_kws: + vmax: 0.02 + cmap: YlGnBu + cbar: true + cbar_kws: + extend: max + marginal_kws: + color: darkturquoise + seaborn_settings: + style: ticks + rc: + axes.titlepad: 15.0 + suptitle: CALIPSO-ICECLOUD / ERA-5 2007/2015 + plot_filename: jointplot_cli_ta_CALIPSO-ICECLOUD_-_ERA-5_2007-2015 diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_enso_basic_climatology.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_enso_basic_climatology.yml new file mode 100644 index 000000000..20375092d --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_enso_basic_climatology.yml @@ -0,0 +1,308 @@ +documentation: + description: ENSO CLIVAR metrics by Yann Planton, background climatology for REF + title: Reproducing ENSO CLIVAR metrics - background climatology + authors: + - chun_felicity + - beucher_romain + - planton_yann + maintainer: + - chun_felicity +preprocessors: + base_bias: + custom_order: true + climate_statistics: + operator: mean + period: full + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 210.0 + end_longitude: 270.0 + start_latitude: -15.0 + end_latitude: 15.0 + ITCZ_bias: + custom_order: true + climate_statistics: + operator: mean + period: full + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 210.0 + end_longitude: 270.0 + start_latitude: -15.0 + end_latitude: 15.0 + convert_units: + units: mm/day + zonal_statistics: + operator: mean + eq_bias: + custom_order: true + climate_statistics: + operator: mean + period: full + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 150.0 + end_longitude: 270.0 + start_latitude: -5.0 + end_latitude: 5.0 + meridional_statistics: + operator: mean + base_cycle: + custom_order: true + climate_statistics: + operator: mean + period: monthly + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 210.0 + end_longitude: 270.0 + start_latitude: -15.0 + end_latitude: 15.0 + ITCZ_sea_cycle: + custom_order: true + climate_statistics: + operator: mean + period: monthly + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 210.0 + end_longitude: 270.0 + start_latitude: -15.0 + end_latitude: 15.0 + convert_units: + units: mm/day + eq_sea_cycle: + custom_order: true + climate_statistics: + operator: mean + period: monthly + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 150.0 + end_longitude: 270.0 + start_latitude: -5.0 + end_latitude: 5.0 + map_bias_level2: + custom_order: true + climate_statistics: + operator: mean + period: full + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 150.0 + end_longitude: 270.0 + start_latitude: -15.0 + end_latitude: 15.0 + map_sea_cyclel2: + custom_order: true + climate_statistics: + operator: mean + period: monthly + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 150.0 + end_longitude: 270.0 + start_latitude: -15.0 + end_latitude: 15.0 +diagnostics: + diagnostic_metrics: + description: run preprocessors on variables for background climatology metrics + variables: + pr_double: + short_name: pr + preprocessor: ITCZ_bias + mip: Amon + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + start_year: 1979 + end_year: 2017 + - &id001 + project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + timerange: 18500116T120000/20141216T120000 + eq_pr_bias: + short_name: pr + preprocessor: eq_bias + mip: Amon + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + start_year: 1979 + end_year: 2017 + - *id001 + eq_sst_bias: + short_name: tos + preprocessor: eq_bias + mip: Omon + additional_datasets: + - dataset: TROPFLUX + version: v1 + project: OBS6 + type: reanaly + tier: 2 + start_year: 1979 + end_year: 2018 + - &id002 + project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Omon + timerange: 18500116T120000/20141216T120000 + eq_tauu_bias: + short_name: tauu + preprocessor: eq_bias + mip: Amon + additional_datasets: + - dataset: TROPFLUX + version: v1 + project: OBS6 + type: reanaly + tier: 2 + mip: Amon + start_year: 1979 + end_year: 2018 + - &id003 + project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + timerange: 18500116T120000/20141216T120000 + pr_double_seacycle: + short_name: pr + preprocessor: ITCZ_sea_cycle + mip: Amon + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + start_year: 1979 + end_year: 2017 + - *id001 + eq_pr_seacycle: + short_name: pr + preprocessor: eq_sea_cycle + mip: Amon + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + start_year: 1979 + end_year: 2017 + - *id001 + eq_sst_seacycle: + short_name: tos + preprocessor: eq_sea_cycle + mip: Omon + additional_datasets: + - dataset: TROPFLUX + version: v1 + project: OBS6 + type: reanaly + tier: 2 + mip: Omon + - *id002 + eq_tauu_seacycle: + short_name: tauu + preprocessor: eq_sea_cycle + mip: Amon + additional_datasets: + - dataset: TROPFLUX + version: v1 + project: OBS6 + type: reanaly + tier: 2 + mip: Amon + start_year: 1979 + end_year: 2018 + - *id003 + scripts: + plot_script: + script: enso_metrics/climatology_diagnostic1.py + diagnostic_level2: + description: run preprocessors on variables for background climatology diagnostic + level 2 + variables: + pr_bias: + short_name: pr + preprocessor: map_bias_level2 + mip: Amon + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + start_year: 1979 + end_year: 2017 + - *id001 + pr_seacycle: + short_name: pr + preprocessor: map_sea_cyclel2 + mip: Amon + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + start_year: 1979 + end_year: 2017 + - *id001 + sst_bias: + short_name: tos + preprocessor: map_bias_level2 + mip: Omon + additional_datasets: + - dataset: TROPFLUX + version: v1 + project: OBS6 + type: reanaly + tier: 2 + mip: Omon + - *id002 + tauu_bias: + short_name: tauu + preprocessor: map_bias_level2 + mip: Amon + additional_datasets: + - dataset: TROPFLUX + version: v1 + project: OBS6 + type: reanaly + tier: 2 + mip: Amon + start_year: 1979 + end_year: 2018 + - *id003 + scripts: + plot_script: + script: enso_metrics/climatology_diagnosticlevel2.py diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_enso_characteristics.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_enso_characteristics.yml new file mode 100644 index 000000000..34203aa00 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_enso_characteristics.yml @@ -0,0 +1,196 @@ +documentation: + description: ENSO CLIVAR metrics by Yann Planton - basic ENSO characteristics for + use in REF + title: Reproducing basic ENSO characteristics metrics + authors: + - chun_felicity + - beucher_romain + - sullivan_arnold + - planton_yann + maintainer: + - chun_felicity +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Omon + timerange: 18500116T120000/20141216T120000 +- dataset: TROPFLUX + version: v1 + project: OBS6 + type: reanaly + tier: 2 +preprocessors: + ssta_enso: + custom_order: true + convert_units: + units: degC + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 190.0 + end_longitude: 240.0 + start_latitude: -5.0 + end_latitude: 5.0 + rolling_window_statistics: + coordinate: time + operator: mean + window_length: 5 + anomalies: + period: monthly + ssta_ninoarea: + custom_order: true + convert_units: + units: degC + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 190.0 + end_longitude: 240.0 + start_latitude: -5.0 + end_latitude: 5.0 + rolling_window_statistics: + coordinate: time + operator: mean + window_length: 5 + anomalies: + period: monthly + area_statistics: + operator: mean + ssta_dec_area: + custom_order: true + convert_units: + units: degC + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 190.0 + end_longitude: 240.0 + start_latitude: -5.0 + end_latitude: 5.0 + rolling_window_statistics: + coordinate: time + operator: mean + window_length: 5 + anomalies: + period: monthly + area_statistics: + operator: mean + extract_month: + month: 12 + ssta_meridional: + custom_order: true + convert_units: + units: degC + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 150.0 + end_longitude: 270.0 + start_latitude: -5.0 + end_latitude: 5.0 + rolling_window_statistics: + coordinate: time + operator: mean + window_length: 5 + anomalies: + period: monthly + meridional_statistics: + operator: mean + ssta_pattern2: + custom_order: true + convert_units: + units: degC + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 150.0 + end_longitude: 270.0 + start_latitude: -5.0 + end_latitude: 5.0 + rolling_window_statistics: + coordinate: time + operator: mean + window_length: 5 + anomalies: + period: monthly + extract_month: + month: 12 + meridional_statistics: + operator: mean + enso_amplitude: + custom_order: true + convert_units: + units: degC + regrid: + target_grid: 1x1 + scheme: linear + extract_region: + start_longitude: 190.0 + end_longitude: 240.0 + start_latitude: -5.0 + end_latitude: 5.0 + rolling_window_statistics: + coordinate: time + operator: mean + window_length: 5 + anomalies: + period: monthly + area_statistics: + operator: mean + climate_statistics: + operator: std_dev + period: full + enso_seas_asym: + custom_order: true + extract_region: + start_longitude: 190.0 + end_longitude: 240.0 + start_latitude: -5.0 + end_latitude: 5.0 + convert_units: + units: degC + anomalies: + period: monthly + area_statistics: + operator: mean +diagnostics: + diagnostic_metrics: + description: run preprocessors on variables for ENSO metrics + variables: + tos_seas_asym: + short_name: tos + mip: Omon + preprocessor: enso_seas_asym + tos_amp: + short_name: tos + mip: Omon + preprocessor: enso_amplitude + tos_patdiv1: + short_name: tos + mip: Omon + preprocessor: ssta_dec_area + tos_lifdur1: + short_name: tos + mip: Omon + preprocessor: ssta_ninoarea + tos_lifdurdiv2: + short_name: tos + mip: Omon + preprocessor: ssta_meridional + tos_pat2: + short_name: tos + mip: Omon + preprocessor: ssta_pattern2 + scripts: + plot_script: + script: enso_metrics/enso_diag1metrics.py diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_equilibrium_climate_sensitivity.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_equilibrium_climate_sensitivity.yml new file mode 100644 index 000000000..f73336a5a --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_equilibrium_climate_sensitivity.yml @@ -0,0 +1,52 @@ +documentation: + title: 'Equilibrium Climate Sensitivity (ECS) + + ' + description: 'Calculate Equilibrium Climate Sensitivity (ECS) using linear regression + following Gregory et al. (2004). + + ' + authors: + - schlund_manuel + maintainer: + - schlund_manuel + references: + - gregory04grl + projects: + - crescendo +preprocessors: + spatial_mean: + area_statistics: + operator: mean +diagnostics: + ecs: + description: Calculate ECS. + variables: + tas: + preprocessor: spatial_mean + rtnt: + preprocessor: spatial_mean + derive: true + scripts: + calculate: + script: climate_metrics/ecs.py + calculate_mmm: false +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: abrupt-4xCO2 + grid: gn + mip: Amon + timerange: 01010116T120000/01251216T120000 +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: piControl + grid: gn + mip: Amon + timerange: 01010116T120000/01251216T120000 diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/recipe.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_global_mean_timeseries.yml similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/recipe.yml rename to packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_global_mean_timeseries.yml diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_regional_historical_annual_cycle.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_regional_historical_annual_cycle.yml new file mode 100644 index 000000000..38ae69cd9 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_regional_historical_annual_cycle.yml @@ -0,0 +1,8127 @@ +documentation: + title: Benchmarking of a single model for a region through extract_shape. + description: 'Benchmarking: annual cycle. + + ' + authors: + - lauer_axel + - bock_lisa + - hassler_birgit + - lindenlaub_lukas + - schlund_manuel + - weigel_katja + maintainer: + - lauer_axel + references: + - lauer25gmd + projects: + - dlrmabak +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + benchmark_dataset: true + plot_label: ACCESS-ESM1-5.r1i1p1f1.gn +preprocessors: + pp_abs: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Arabian-Peninsula: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Peninsula + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Arabian-Peninsula: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Peninsula + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Arabian-Sea: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Sea + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Arabian-Sea: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Sea + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Arctic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arctic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Arctic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arctic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Bay-of-Bengal: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Bay-of-Bengal + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Bay-of-Bengal: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Bay-of-Bengal + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-C.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.Australia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-C.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.Australia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-C.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-C.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Caribbean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Caribbean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Caribbean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Caribbean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Central-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Central-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Central-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Central-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-E.Antarctica: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Antarctica + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-E.Antarctica: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Antarctica + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-E.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-E.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-E.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Australia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-E.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Australia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-E.C.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.C.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-E.C.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.C.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-E.Europe: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Europe + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-E.Europe: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Europe + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-E.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-E.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-E.Siberia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Siberia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-E.Siberia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Siberia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-E.Southern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Southern-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-E.Southern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Southern-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Equatorial.Atlantic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Atlantic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Equatorial.Atlantic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Atlantic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Equatorial.Indic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Indic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Equatorial.Indic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Indic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Equatorial.Pacific-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Pacific-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Equatorial.Pacific-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Pacific-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Greenland-and-Iceland: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Greenland/Iceland + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Greenland-and-Iceland: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Greenland/Iceland + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Madagascar: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Madagascar + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Madagascar: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Madagascar + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Mediterranean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Mediterranean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Mediterranean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Mediterranean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.Atlantic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Atlantic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.Atlantic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Atlantic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Australia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Australia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.Central-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Central-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.Central-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Central-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.E.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.E.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.E.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.E.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.Eastern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Eastern-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.Eastern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Eastern-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.Europe: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.Europe: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.Pacific-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Pacific-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.Pacific-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Pacific-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.W.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.W.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-N.W.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-N.W.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-New-Zealand: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - New-Zealand + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-New-Zealand: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - New-Zealand + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Russian-Arctic: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Arctic + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Russian-Arctic: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Arctic + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Russian-Far-East: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Far-East + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Russian-Far-East: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Far-East + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.Atlantic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Atlantic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.Atlantic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Atlantic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Australia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Australia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.Central-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Central-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.Central-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Central-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.E.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.E.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.E.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.E.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.Eastern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Eastern-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.Eastern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Eastern-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.Indic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Indic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.Indic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Indic-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.Pacific-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Pacific-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.Pacific-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Pacific-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-S.W.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.W.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-S.W.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.W.South-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Sahara: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Sahara + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Sahara: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Sahara + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-South-American-Monsoon: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - South-American-Monsoon + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-South-American-Monsoon: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - South-American-Monsoon + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Southern-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Southern-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Southern-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Southern-Ocean + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Tibetan-Plateau: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Tibetan-Plateau + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Tibetan-Plateau: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Tibetan-Plateau + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-W.Antarctica: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Antarctica + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-W.Antarctica: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Antarctica + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-W.C.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.C.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-W.C.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.C.Asia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-W.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-W.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.North-America + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-W.Siberia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Siberia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-W.Siberia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Siberia + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-W.Southern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Southern-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-W.Southern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Southern-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-West-and-Central-Europe: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - West&Central-Europe + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-West-and-Central-Europe: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - West&Central-Europe + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs-Western-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Western-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean + pp_abs_200-Western-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Western-Africa + climate_statistics: + period: monthly + area_statistics: + operator: mean +diagnostics: + anncyc-Arabian-Peninsula: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Arabian-Peninsula + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Arabian-Peninsula + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Arabian-Peninsula + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Arabian-Peninsula + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Arabian-Peninsula + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Arabian-Peninsula' + anncyc-Arabian-Sea: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Arabian-Sea + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Arabian-Sea + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Arabian-Sea + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Arabian-Sea + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Arabian-Sea + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Arabian-Sea' + anncyc-Arctic-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Arctic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Arctic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Arctic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Arctic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Arctic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Arctic-Ocean' + anncyc-Bay-of-Bengal: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Bay-of-Bengal + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Bay-of-Bengal + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Bay-of-Bengal + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Bay-of-Bengal + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Bay-of-Bengal + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Bay-of-Bengal' + anncyc-C.Australia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-C.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-C.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-C.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-C.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-C.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} C.Australia' + anncyc-C.North-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-C.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-C.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-C.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-C.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-C.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} C.North-America' + anncyc-Caribbean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Caribbean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Caribbean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Caribbean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Caribbean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Caribbean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Caribbean' + anncyc-Central-Africa: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Central-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Central-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Central-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Central-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Central-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Central-Africa' + anncyc-E.Antarctica: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Antarctica + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Antarctica + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Antarctica + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Antarctica' + anncyc-E.Asia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Asia' + anncyc-E.Australia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Australia' + anncyc-E.C.Asia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.C.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.C.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.C.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.C.Asia' + anncyc-E.Europe: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Europe + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Europe + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Europe + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Europe' + anncyc-E.North-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.North-America' + anncyc-E.Siberia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Siberia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Siberia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Siberia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Siberia' + anncyc-E.Southern-Africa: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Southern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Southern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-E.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Southern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-E.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Southern-Africa' + anncyc-Equatorial.Atlantic-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Equatorial.Atlantic-Ocean' + anncyc-Equatorial.Indic-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Equatorial.Indic-Ocean' + anncyc-Equatorial.Pacific-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Equatorial.Pacific-Ocean' + anncyc-Greenland-and-Iceland: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Greenland-and-Iceland + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Greenland-and-Iceland + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Greenland-and-Iceland + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Greenland-and-Iceland + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Greenland-and-Iceland + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Greenland/Iceland' + anncyc-Madagascar: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Madagascar + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Madagascar + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Madagascar + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Madagascar + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Madagascar + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Madagascar' + anncyc-Mediterranean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Mediterranean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Mediterranean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Mediterranean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Mediterranean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Mediterranean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Mediterranean' + anncyc-N.Atlantic-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Atlantic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Atlantic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Atlantic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Atlantic-Ocean' + anncyc-N.Australia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Australia' + anncyc-N.Central-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Central-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Central-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Central-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Central-America' + anncyc-N.E.North-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.E.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.E.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.E.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.E.North-America' + anncyc-N.E.South-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.E.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.E.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.E.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.E.South-America' + anncyc-N.Eastern-Africa: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Eastern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Eastern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Eastern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Eastern-Africa' + anncyc-N.Europe: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Europe + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Europe + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Europe + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Europe' + anncyc-N.Pacific-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Pacific-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Pacific-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Pacific-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Pacific-Ocean' + anncyc-N.South-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.South-America' + anncyc-N.W.North-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.W.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.W.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.W.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.W.North-America' + anncyc-N.W.South-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.W.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.W.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-N.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.W.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-N.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.W.South-America' + anncyc-New-Zealand: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-New-Zealand + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-New-Zealand + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-New-Zealand + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-New-Zealand + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-New-Zealand + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} New-Zealand' + anncyc-Russian-Arctic: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Russian-Arctic + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Russian-Arctic + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Russian-Arctic + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Russian-Arctic + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Russian-Arctic + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Russian-Arctic' + anncyc-Russian-Far-East: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Russian-Far-East + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Russian-Far-East + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Russian-Far-East + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Russian-Far-East + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Russian-Far-East + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Russian-Far-East' + anncyc-S.Asia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Asia' + anncyc-S.Atlantic-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Atlantic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Atlantic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Atlantic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Atlantic-Ocean' + anncyc-S.Australia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Australia' + anncyc-S.Central-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Central-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Central-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Central-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Central-America' + anncyc-S.E.Asia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.E.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.E.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.E.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.E.Asia' + anncyc-S.E.South-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.E.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.E.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.E.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.E.South-America' + anncyc-S.Eastern-Africa: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Eastern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Eastern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Eastern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Eastern-Africa' + anncyc-S.Indic-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Indic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Indic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Indic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Indic-Ocean' + anncyc-S.Pacific-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Pacific-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Pacific-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Pacific-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Pacific-Ocean' + anncyc-S.South-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.South-America' + anncyc-S.W.South-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.W.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.W.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-S.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.W.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-S.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.W.South-America' + anncyc-Sahara: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Sahara + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Sahara + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Sahara + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Sahara + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Sahara + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Sahara' + anncyc-South-American-Monsoon: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-South-American-Monsoon + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-South-American-Monsoon + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-South-American-Monsoon + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-South-American-Monsoon + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-South-American-Monsoon + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} South-American-Monsoon' + anncyc-Southern-Ocean: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Southern-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Southern-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Southern-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Southern-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Southern-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Southern-Ocean' + anncyc-Tibetan-Plateau: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Tibetan-Plateau + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Tibetan-Plateau + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Tibetan-Plateau + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Tibetan-Plateau + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Tibetan-Plateau + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Tibetan-Plateau' + anncyc-W.Antarctica: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.Antarctica + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.Antarctica + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.Antarctica + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.Antarctica' + anncyc-W.C.Asia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.C.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.C.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.C.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.C.Asia' + anncyc-W.North-America: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.North-America' + anncyc-W.Siberia: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.Siberia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.Siberia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.Siberia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.Siberia' + anncyc-W.Southern-Africa: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.Southern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.Southern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-W.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.Southern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-W.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.Southern-Africa' + anncyc-West-and-Central-Europe: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-West-and-Central-Europe + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-West-and-Central-Europe + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-West-and-Central-Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-West-and-Central-Europe + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-West-and-Central-Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} West&Central-Europe' + anncyc-Western-Africa: + description: Plot global mean mean annual cycle for the given period including + a reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Western-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true' + pr: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Western-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + psl: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs-Western-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Western-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true' + short_name: hus + ua_200: + start_year: 1980 + end_year: 2009 + preprocessor: pp_abs_200-Western-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + annual_cycle: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Western-Africa' diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_regional_historical_timeseries.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_regional_historical_timeseries.yml new file mode 100644 index 000000000..e4a8cde06 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_regional_historical_timeseries.yml @@ -0,0 +1,16813 @@ +documentation: + title: Benchmarking of a single model for a region through extract_shape. + description: 'Benchmarking: time series. + + ' + authors: + - lauer_axel + - bock_lisa + - hassler_birgit + - lindenlaub_lukas + - schlund_manuel + - weigel_katja + maintainer: + - lauer_axel + references: + - lauer25gmd + projects: + - dlrmabak +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + benchmark_dataset: true + plot_label: ACCESS-ESM1-5.r1i1p1f1.gn +preprocessors: + pp_abs: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + area_statistics: + operator: mean + pp_abs_200: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + area_statistics: + operator: mean + pp: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp-Arabian-Peninsula: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Peninsula + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Arabian-Peninsula: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Peninsula + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Arabian-Peninsula: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Peninsula + area_statistics: + operator: mean + pp_abs_200-Arabian-Peninsula: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Peninsula + area_statistics: + operator: mean + pp-Arabian-Sea: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Sea + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Arabian-Sea: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Sea + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Arabian-Sea: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Sea + area_statistics: + operator: mean + pp_abs_200-Arabian-Sea: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arabian-Sea + area_statistics: + operator: mean + pp-Arctic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arctic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Arctic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arctic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Arctic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arctic-Ocean + area_statistics: + operator: mean + pp_abs_200-Arctic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Arctic-Ocean + area_statistics: + operator: mean + pp-Bay-of-Bengal: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Bay-of-Bengal + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Bay-of-Bengal: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Bay-of-Bengal + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Bay-of-Bengal: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Bay-of-Bengal + area_statistics: + operator: mean + pp_abs_200-Bay-of-Bengal: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Bay-of-Bengal + area_statistics: + operator: mean + pp-C.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.Australia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-C.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.Australia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-C.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.Australia + area_statistics: + operator: mean + pp_abs_200-C.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.Australia + area_statistics: + operator: mean + pp-C.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-C.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-C.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.North-America + area_statistics: + operator: mean + pp_abs_200-C.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - C.North-America + area_statistics: + operator: mean + pp-Caribbean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Caribbean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Caribbean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Caribbean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Caribbean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Caribbean + area_statistics: + operator: mean + pp_abs_200-Caribbean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Caribbean + area_statistics: + operator: mean + pp-Central-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Central-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Central-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Central-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Central-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Central-Africa + area_statistics: + operator: mean + pp_abs_200-Central-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Central-Africa + area_statistics: + operator: mean + pp-E.Antarctica: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Antarctica + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-E.Antarctica: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Antarctica + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-E.Antarctica: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Antarctica + area_statistics: + operator: mean + pp_abs_200-E.Antarctica: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Antarctica + area_statistics: + operator: mean + pp-E.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-E.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-E.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Asia + area_statistics: + operator: mean + pp_abs_200-E.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Asia + area_statistics: + operator: mean + pp-E.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Australia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-E.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Australia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-E.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Australia + area_statistics: + operator: mean + pp_abs_200-E.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Australia + area_statistics: + operator: mean + pp-E.C.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.C.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-E.C.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.C.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-E.C.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.C.Asia + area_statistics: + operator: mean + pp_abs_200-E.C.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.C.Asia + area_statistics: + operator: mean + pp-E.Europe: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Europe + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-E.Europe: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Europe + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-E.Europe: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Europe + area_statistics: + operator: mean + pp_abs_200-E.Europe: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Europe + area_statistics: + operator: mean + pp-E.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-E.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-E.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.North-America + area_statistics: + operator: mean + pp_abs_200-E.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.North-America + area_statistics: + operator: mean + pp-E.Siberia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Siberia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-E.Siberia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Siberia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-E.Siberia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Siberia + area_statistics: + operator: mean + pp_abs_200-E.Siberia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Siberia + area_statistics: + operator: mean + pp-E.Southern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Southern-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-E.Southern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Southern-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-E.Southern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Southern-Africa + area_statistics: + operator: mean + pp_abs_200-E.Southern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - E.Southern-Africa + area_statistics: + operator: mean + pp-Equatorial.Atlantic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Atlantic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Equatorial.Atlantic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Atlantic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Equatorial.Atlantic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Atlantic-Ocean + area_statistics: + operator: mean + pp_abs_200-Equatorial.Atlantic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Atlantic-Ocean + area_statistics: + operator: mean + pp-Equatorial.Indic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Indic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Equatorial.Indic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Indic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Equatorial.Indic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Indic-Ocean + area_statistics: + operator: mean + pp_abs_200-Equatorial.Indic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Indic-Ocean + area_statistics: + operator: mean + pp-Equatorial.Pacific-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Pacific-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Equatorial.Pacific-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Pacific-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Equatorial.Pacific-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Pacific-Ocean + area_statistics: + operator: mean + pp_abs_200-Equatorial.Pacific-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Equatorial.Pacific-Ocean + area_statistics: + operator: mean + pp-Greenland-and-Iceland: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Greenland/Iceland + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Greenland-and-Iceland: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Greenland/Iceland + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Greenland-and-Iceland: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Greenland/Iceland + area_statistics: + operator: mean + pp_abs_200-Greenland-and-Iceland: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Greenland/Iceland + area_statistics: + operator: mean + pp-Madagascar: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Madagascar + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Madagascar: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Madagascar + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Madagascar: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Madagascar + area_statistics: + operator: mean + pp_abs_200-Madagascar: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Madagascar + area_statistics: + operator: mean + pp-Mediterranean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Mediterranean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Mediterranean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Mediterranean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Mediterranean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Mediterranean + area_statistics: + operator: mean + pp_abs_200-Mediterranean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Mediterranean + area_statistics: + operator: mean + pp-N.Atlantic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Atlantic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.Atlantic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Atlantic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.Atlantic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Atlantic-Ocean + area_statistics: + operator: mean + pp_abs_200-N.Atlantic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Atlantic-Ocean + area_statistics: + operator: mean + pp-N.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Australia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Australia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Australia + area_statistics: + operator: mean + pp_abs_200-N.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Australia + area_statistics: + operator: mean + pp-N.Central-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Central-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.Central-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Central-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.Central-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Central-America + area_statistics: + operator: mean + pp_abs_200-N.Central-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Central-America + area_statistics: + operator: mean + pp-N.E.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.E.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.E.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.North-America + area_statistics: + operator: mean + pp_abs_200-N.E.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.North-America + area_statistics: + operator: mean + pp-N.E.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.E.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.E.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.South-America + area_statistics: + operator: mean + pp_abs_200-N.E.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.E.South-America + area_statistics: + operator: mean + pp-N.Eastern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Eastern-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.Eastern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Eastern-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.Eastern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Eastern-Africa + area_statistics: + operator: mean + pp_abs_200-N.Eastern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Eastern-Africa + area_statistics: + operator: mean + pp-N.Europe: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.Europe: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.Europe: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + area_statistics: + operator: mean + pp_abs_200-N.Europe: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Europe + area_statistics: + operator: mean + pp-N.Pacific-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Pacific-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.Pacific-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Pacific-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.Pacific-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Pacific-Ocean + area_statistics: + operator: mean + pp_abs_200-N.Pacific-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.Pacific-Ocean + area_statistics: + operator: mean + pp-N.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.South-America + area_statistics: + operator: mean + pp_abs_200-N.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.South-America + area_statistics: + operator: mean + pp-N.W.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.W.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.W.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.North-America + area_statistics: + operator: mean + pp_abs_200-N.W.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.North-America + area_statistics: + operator: mean + pp-N.W.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-N.W.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-N.W.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.South-America + area_statistics: + operator: mean + pp_abs_200-N.W.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - N.W.South-America + area_statistics: + operator: mean + pp-New-Zealand: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - New-Zealand + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-New-Zealand: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - New-Zealand + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-New-Zealand: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - New-Zealand + area_statistics: + operator: mean + pp_abs_200-New-Zealand: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - New-Zealand + area_statistics: + operator: mean + pp-Russian-Arctic: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Arctic + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Russian-Arctic: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Arctic + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Russian-Arctic: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Arctic + area_statistics: + operator: mean + pp_abs_200-Russian-Arctic: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Arctic + area_statistics: + operator: mean + pp-Russian-Far-East: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Far-East + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Russian-Far-East: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Far-East + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Russian-Far-East: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Far-East + area_statistics: + operator: mean + pp_abs_200-Russian-Far-East: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Russian-Far-East + area_statistics: + operator: mean + pp-S.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Asia + area_statistics: + operator: mean + pp_abs_200-S.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Asia + area_statistics: + operator: mean + pp-S.Atlantic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Atlantic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.Atlantic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Atlantic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.Atlantic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Atlantic-Ocean + area_statistics: + operator: mean + pp_abs_200-S.Atlantic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Atlantic-Ocean + area_statistics: + operator: mean + pp-S.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Australia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Australia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.Australia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Australia + area_statistics: + operator: mean + pp_abs_200-S.Australia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Australia + area_statistics: + operator: mean + pp-S.Central-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Central-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.Central-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Central-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.Central-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Central-America + area_statistics: + operator: mean + pp_abs_200-S.Central-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Central-America + area_statistics: + operator: mean + pp-S.E.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.E.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.E.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.Asia + area_statistics: + operator: mean + pp_abs_200-S.E.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.Asia + area_statistics: + operator: mean + pp-S.E.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.E.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.E.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.South-America + area_statistics: + operator: mean + pp_abs_200-S.E.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.E.South-America + area_statistics: + operator: mean + pp-S.Eastern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Eastern-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.Eastern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Eastern-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.Eastern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Eastern-Africa + area_statistics: + operator: mean + pp_abs_200-S.Eastern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Eastern-Africa + area_statistics: + operator: mean + pp-S.Indic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Indic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.Indic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Indic-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.Indic-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Indic-Ocean + area_statistics: + operator: mean + pp_abs_200-S.Indic-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Indic-Ocean + area_statistics: + operator: mean + pp-S.Pacific-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Pacific-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.Pacific-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Pacific-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.Pacific-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Pacific-Ocean + area_statistics: + operator: mean + pp_abs_200-S.Pacific-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.Pacific-Ocean + area_statistics: + operator: mean + pp-S.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.South-America + area_statistics: + operator: mean + pp_abs_200-S.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.South-America + area_statistics: + operator: mean + pp-S.W.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.W.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-S.W.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.W.South-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-S.W.South-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.W.South-America + area_statistics: + operator: mean + pp_abs_200-S.W.South-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - S.W.South-America + area_statistics: + operator: mean + pp-Sahara: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Sahara + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Sahara: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Sahara + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Sahara: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Sahara + area_statistics: + operator: mean + pp_abs_200-Sahara: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Sahara + area_statistics: + operator: mean + pp-South-American-Monsoon: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - South-American-Monsoon + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-South-American-Monsoon: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - South-American-Monsoon + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-South-American-Monsoon: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - South-American-Monsoon + area_statistics: + operator: mean + pp_abs_200-South-American-Monsoon: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - South-American-Monsoon + area_statistics: + operator: mean + pp-Southern-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Southern-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Southern-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Southern-Ocean + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Southern-Ocean: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Southern-Ocean + area_statistics: + operator: mean + pp_abs_200-Southern-Ocean: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Southern-Ocean + area_statistics: + operator: mean + pp-Tibetan-Plateau: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Tibetan-Plateau + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Tibetan-Plateau: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Tibetan-Plateau + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Tibetan-Plateau: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Tibetan-Plateau + area_statistics: + operator: mean + pp_abs_200-Tibetan-Plateau: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Tibetan-Plateau + area_statistics: + operator: mean + pp-W.Antarctica: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Antarctica + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-W.Antarctica: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Antarctica + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-W.Antarctica: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Antarctica + area_statistics: + operator: mean + pp_abs_200-W.Antarctica: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Antarctica + area_statistics: + operator: mean + pp-W.C.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.C.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-W.C.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.C.Asia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-W.C.Asia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.C.Asia + area_statistics: + operator: mean + pp_abs_200-W.C.Asia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.C.Asia + area_statistics: + operator: mean + pp-W.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-W.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.North-America + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-W.North-America: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.North-America + area_statistics: + operator: mean + pp_abs_200-W.North-America: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.North-America + area_statistics: + operator: mean + pp-W.Siberia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Siberia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-W.Siberia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Siberia + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-W.Siberia: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Siberia + area_statistics: + operator: mean + pp_abs_200-W.Siberia: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Siberia + area_statistics: + operator: mean + pp-W.Southern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Southern-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-W.Southern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Southern-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-W.Southern-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Southern-Africa + area_statistics: + operator: mean + pp_abs_200-W.Southern-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - W.Southern-Africa + area_statistics: + operator: mean + pp-West-and-Central-Europe: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - West&Central-Europe + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-West-and-Central-Europe: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - West&Central-Europe + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-West-and-Central-Europe: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - West&Central-Europe + area_statistics: + operator: mean + pp_abs_200-West-and-Central-Europe: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - West&Central-Europe + area_statistics: + operator: mean + pp-Western-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Western-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_200-Western-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Western-Africa + anomalies: + period: month + reference: + start_year: 1980 + start_month: 1 + start_day: 1 + end_year: 2009 + end_month: 12 + end_day: 31 + area_statistics: + operator: mean + pp_abs-Western-Africa: + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Western-Africa + area_statistics: + operator: mean + pp_abs_200-Western-Africa: + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + regrid: + target_grid: 1x1 + scheme: linear + extract_shape: + shapefile: ar6 + crop: true + decomposed: true + ids: + Name: + - Western-Africa + area_statistics: + operator: mean +diagnostics: + timeseries-Arabian-Peninsula: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Arabian-Peninsula + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Arabian-Peninsula + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Arabian-Peninsula + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Arabian-Peninsula + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Arabian-Peninsula + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Arabian-Peninsula' + timeseries_abs-Arabian-Peninsula: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Arabian-Peninsula + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Arabian-Peninsula + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Arabian-Peninsula + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Arabian-Peninsula + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Arabian-Peninsula + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Arabian-Peninsula' + timeseries-Arabian-Sea: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Arabian-Sea + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Arabian-Sea + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Arabian-Sea + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Arabian-Sea + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Arabian-Sea + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Arabian-Sea' + timeseries_abs-Arabian-Sea: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Arabian-Sea + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Arabian-Sea + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Arabian-Sea + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Arabian-Sea + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Arabian-Sea + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Arabian-Sea' + timeseries-Arctic-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Arctic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Arctic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Arctic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Arctic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Arctic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Arctic-Ocean' + timeseries_abs-Arctic-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Arctic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Arctic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Arctic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Arctic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Arctic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Arctic-Ocean' + timeseries-Bay-of-Bengal: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Bay-of-Bengal + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Bay-of-Bengal + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Bay-of-Bengal + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Bay-of-Bengal + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Bay-of-Bengal + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Bay-of-Bengal' + timeseries_abs-Bay-of-Bengal: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Bay-of-Bengal + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Bay-of-Bengal + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Bay-of-Bengal + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Bay-of-Bengal + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Bay-of-Bengal + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Bay-of-Bengal' + timeseries-C.Australia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-C.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-C.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-C.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-C.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-C.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} C.Australia' + timeseries_abs-C.Australia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-C.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-C.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-C.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-C.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-C.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} C.Australia' + timeseries-C.North-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-C.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-C.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-C.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-C.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-C.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} C.North-America' + timeseries_abs-C.North-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-C.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-C.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-C.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-C.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-C.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} C.North-America' + timeseries-Caribbean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Caribbean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Caribbean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Caribbean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Caribbean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Caribbean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Caribbean' + timeseries_abs-Caribbean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Caribbean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Caribbean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Caribbean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Caribbean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Caribbean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Caribbean' + timeseries-Central-Africa: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Central-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Central-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Central-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Central-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Central-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Central-Africa' + timeseries_abs-Central-Africa: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Central-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Central-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Central-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Central-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Central-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Central-Africa' + timeseries-E.Antarctica: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Antarctica + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Antarctica + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Antarctica + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Antarctica' + timeseries_abs-E.Antarctica: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Antarctica + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Antarctica + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Antarctica + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Antarctica' + timeseries-E.Asia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Asia' + timeseries_abs-E.Asia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Asia' + timeseries-E.Australia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Australia' + timeseries_abs-E.Australia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Australia' + timeseries-E.C.Asia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.C.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.C.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.C.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.C.Asia' + timeseries_abs-E.C.Asia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.C.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.C.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.C.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.C.Asia' + timeseries-E.Europe: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Europe + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Europe + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Europe + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Europe' + timeseries_abs-E.Europe: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Europe + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Europe + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Europe + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Europe' + timeseries-E.North-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.North-America' + timeseries_abs-E.North-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.North-America' + timeseries-E.Siberia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Siberia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Siberia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Siberia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Siberia' + timeseries_abs-E.Siberia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Siberia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Siberia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Siberia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Siberia' + timeseries-E.Southern-Africa: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Southern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Southern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-E.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Southern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-E.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Southern-Africa' + timeseries_abs-E.Southern-Africa: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Southern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Southern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-E.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Southern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-E.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} E.Southern-Africa' + timeseries-Equatorial.Atlantic-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Equatorial.Atlantic-Ocean' + timeseries_abs-Equatorial.Atlantic-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Equatorial.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Equatorial.Atlantic-Ocean' + timeseries-Equatorial.Indic-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Equatorial.Indic-Ocean' + timeseries_abs-Equatorial.Indic-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Equatorial.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Equatorial.Indic-Ocean' + timeseries-Equatorial.Pacific-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Equatorial.Pacific-Ocean' + timeseries_abs-Equatorial.Pacific-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Equatorial.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Equatorial.Pacific-Ocean' + timeseries-Greenland-and-Iceland: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Greenland-and-Iceland + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Greenland-and-Iceland + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Greenland-and-Iceland + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Greenland-and-Iceland + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Greenland-and-Iceland + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Greenland/Iceland' + timeseries_abs-Greenland-and-Iceland: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Greenland-and-Iceland + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Greenland-and-Iceland + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Greenland-and-Iceland + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Greenland-and-Iceland + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Greenland-and-Iceland + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Greenland/Iceland' + timeseries-Madagascar: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Madagascar + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Madagascar + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Madagascar + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Madagascar + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Madagascar + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Madagascar' + timeseries_abs-Madagascar: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Madagascar + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Madagascar + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Madagascar + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Madagascar + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Madagascar + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Madagascar' + timeseries-Mediterranean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Mediterranean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Mediterranean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Mediterranean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Mediterranean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Mediterranean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Mediterranean' + timeseries_abs-Mediterranean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Mediterranean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Mediterranean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Mediterranean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Mediterranean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Mediterranean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Mediterranean' + timeseries-N.Atlantic-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Atlantic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Atlantic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Atlantic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Atlantic-Ocean' + timeseries_abs-N.Atlantic-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Atlantic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Atlantic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Atlantic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Atlantic-Ocean' + timeseries-N.Australia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Australia' + timeseries_abs-N.Australia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Australia' + timeseries-N.Central-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Central-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Central-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Central-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Central-America' + timeseries_abs-N.Central-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Central-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Central-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Central-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Central-America' + timeseries-N.E.North-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.E.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.E.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.E.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.E.North-America' + timeseries_abs-N.E.North-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.E.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.E.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.E.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.E.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.E.North-America' + timeseries-N.E.South-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.E.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.E.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.E.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.E.South-America' + timeseries_abs-N.E.South-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.E.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.E.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.E.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.E.South-America' + timeseries-N.Eastern-Africa: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Eastern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Eastern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Eastern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Eastern-Africa' + timeseries_abs-N.Eastern-Africa: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Eastern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Eastern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Eastern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Eastern-Africa' + timeseries-N.Europe: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Europe + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Europe + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Europe + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Europe' + timeseries_abs-N.Europe: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Europe + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Europe + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Europe + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Europe' + timeseries-N.Pacific-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Pacific-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Pacific-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Pacific-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Pacific-Ocean' + timeseries_abs-N.Pacific-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Pacific-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Pacific-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Pacific-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.Pacific-Ocean' + timeseries-N.South-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.South-America' + timeseries_abs-N.South-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.South-America' + timeseries-N.W.North-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.W.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.W.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.W.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.W.North-America' + timeseries_abs-N.W.North-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.W.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.W.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.W.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.W.North-America' + timeseries-N.W.South-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.W.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.W.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-N.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.W.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-N.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.W.South-America' + timeseries_abs-N.W.South-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.W.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.W.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-N.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.W.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-N.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} N.W.South-America' + timeseries-New-Zealand: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-New-Zealand + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-New-Zealand + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-New-Zealand + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-New-Zealand + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-New-Zealand + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} New-Zealand' + timeseries_abs-New-Zealand: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-New-Zealand + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-New-Zealand + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-New-Zealand + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-New-Zealand + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-New-Zealand + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} New-Zealand' + timeseries-Russian-Arctic: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Russian-Arctic + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Russian-Arctic + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Russian-Arctic + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Russian-Arctic + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Russian-Arctic + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Russian-Arctic' + timeseries_abs-Russian-Arctic: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Russian-Arctic + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Russian-Arctic + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Russian-Arctic + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Russian-Arctic + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Russian-Arctic + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Russian-Arctic' + timeseries-Russian-Far-East: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Russian-Far-East + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Russian-Far-East + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Russian-Far-East + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Russian-Far-East + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Russian-Far-East + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Russian-Far-East' + timeseries_abs-Russian-Far-East: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Russian-Far-East + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Russian-Far-East + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Russian-Far-East + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Russian-Far-East + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Russian-Far-East + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Russian-Far-East' + timeseries-S.Asia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Asia' + timeseries_abs-S.Asia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Asia' + timeseries-S.Atlantic-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Atlantic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Atlantic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Atlantic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Atlantic-Ocean' + timeseries_abs-S.Atlantic-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Atlantic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Atlantic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Atlantic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Atlantic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Atlantic-Ocean' + timeseries-S.Australia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Australia' + timeseries_abs-S.Australia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Australia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Australia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Australia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Australia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Australia' + timeseries-S.Central-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Central-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Central-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Central-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Central-America' + timeseries_abs-S.Central-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Central-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Central-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Central-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Central-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Central-America' + timeseries-S.E.Asia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.E.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.E.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.E.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.E.Asia' + timeseries_abs-S.E.Asia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.E.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.E.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.E.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.E.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.E.Asia' + timeseries-S.E.South-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.E.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.E.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.E.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.E.South-America' + timeseries_abs-S.E.South-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.E.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.E.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.E.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.E.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.E.South-America' + timeseries-S.Eastern-Africa: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Eastern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Eastern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Eastern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Eastern-Africa' + timeseries_abs-S.Eastern-Africa: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Eastern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Eastern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Eastern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Eastern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Eastern-Africa' + timeseries-S.Indic-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Indic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Indic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Indic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Indic-Ocean' + timeseries_abs-S.Indic-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Indic-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Indic-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Indic-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Indic-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Indic-Ocean' + timeseries-S.Pacific-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Pacific-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Pacific-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Pacific-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Pacific-Ocean' + timeseries_abs-S.Pacific-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Pacific-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Pacific-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Pacific-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.Pacific-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.Pacific-Ocean' + timeseries-S.South-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.South-America' + timeseries_abs-S.South-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.South-America' + timeseries-S.W.South-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.W.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.W.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-S.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.W.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-S.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.W.South-America' + timeseries_abs-S.W.South-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.W.South-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.W.South-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-S.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.W.South-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-S.W.South-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} S.W.South-America' + timeseries-Sahara: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Sahara + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Sahara + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Sahara + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Sahara + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Sahara + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Sahara' + timeseries_abs-Sahara: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Sahara + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Sahara + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Sahara + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Sahara + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Sahara + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Sahara' + timeseries-South-American-Monsoon: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-South-American-Monsoon + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-South-American-Monsoon + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-South-American-Monsoon + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-South-American-Monsoon + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-South-American-Monsoon + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} South-American-Monsoon' + timeseries_abs-South-American-Monsoon: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-South-American-Monsoon + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-South-American-Monsoon + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-South-American-Monsoon + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-South-American-Monsoon + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-South-American-Monsoon + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} South-American-Monsoon' + timeseries-Southern-Ocean: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Southern-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Southern-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Southern-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Southern-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Southern-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Southern-Ocean' + timeseries_abs-Southern-Ocean: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Southern-Ocean + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Southern-Ocean + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Southern-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Southern-Ocean + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Southern-Ocean + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Southern-Ocean' + timeseries-Tibetan-Plateau: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Tibetan-Plateau + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Tibetan-Plateau + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Tibetan-Plateau + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Tibetan-Plateau + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Tibetan-Plateau + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Tibetan-Plateau' + timeseries_abs-Tibetan-Plateau: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Tibetan-Plateau + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Tibetan-Plateau + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Tibetan-Plateau + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Tibetan-Plateau + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Tibetan-Plateau + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Tibetan-Plateau' + timeseries-W.Antarctica: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.Antarctica + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.Antarctica + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.Antarctica + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.Antarctica' + timeseries_abs-W.Antarctica: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.Antarctica + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.Antarctica + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.Antarctica + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.Antarctica + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.Antarctica' + timeseries-W.C.Asia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.C.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.C.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.C.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.C.Asia' + timeseries_abs-W.C.Asia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.C.Asia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.C.Asia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.C.Asia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.C.Asia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.C.Asia' + timeseries-W.North-America: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.North-America' + timeseries_abs-W.North-America: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.North-America + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.North-America + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.North-America + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.North-America + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.North-America' + timeseries-W.Siberia: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.Siberia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.Siberia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.Siberia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.Siberia' + timeseries_abs-W.Siberia: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.Siberia + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.Siberia + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.Siberia + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.Siberia + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.Siberia' + timeseries-W.Southern-Africa: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.Southern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.Southern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-W.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.Southern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-W.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.Southern-Africa' + timeseries_abs-W.Southern-Africa: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.Southern-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.Southern-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-W.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.Southern-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-W.Southern-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} W.Southern-Africa' + timeseries-West-and-Central-Europe: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-West-and-Central-Europe + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-West-and-Central-Europe + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-West-and-Central-Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-West-and-Central-Europe + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-West-and-Central-Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} West&Central-Europe' + timeseries_abs-West-and-Central-Europe: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-West-and-Central-Europe + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-West-and-Central-Europe + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-West-and-Central-Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-West-and-Central-Europe + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-West-and-Central-Europe + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} West&Central-Europe' + timeseries-Western-Africa: + description: Plot "classical" time series of global mean anomalies including a + reference dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Western-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Western-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp-Western-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Western-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_200-Western-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Western-Africa' + timeseries_abs-Western-Africa: + description: Plot "classical" time series of global mean including a reference + dataset. + variables: + tas: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Western-Africa + mip: Amon + reference_dataset: HadCRUT5 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + reference_for_metric: true + pr: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Western-Africa + mip: Amon + reference_dataset: GPCP-V2.3 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + psl: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs-Western-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + hus_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Western-Africa + mip: Amon + reference_dataset: ERA5 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + short_name: hus + ua_200: + start_year: 1980 + end_year: 2014 + preprocessor: pp_abs_200-Western-Africa + mip: Amon + reference_dataset: ERA-5 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + short_name: ua + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + plots: + timeseries: + plot_kwargs: + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + HadCRUT5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + ERA-5: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + GPCP-V2.3: + color: black + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 3 + pyplot_kwargs: + title: '{long_name} Western-Africa' diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_regional_historical_trend.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_regional_historical_trend.yml new file mode 100644 index 000000000..0861dc7d6 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_regional_historical_trend.yml @@ -0,0 +1,537 @@ +documentation: + description: Box plot, linear trends for the 46 IPCC AR6 reference regions for land + (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot + function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + authors: + - schlund_manuel + - weigel_katja + maintainer: + - weigel_katja + title: Linear trends. +datasets: [] +preprocessors: + trend_tas: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: K yr-1 + trend_pr: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: mm kg m-3 day-1 yr-1 + trend_psl: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: m-1 kg s-2 yr-1 + trend_ua200: + custom_order: true + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: m s-1 yr-1 + trend_hus200: + custom_order: true + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: year-1 +diagnostics: + tas_trends: + variables: + tas: + preprocessor: trend_tas + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: tas + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: tas trend [K/yr] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Near-Surface Air Temperature + pr_trends: + variables: + pr: + preprocessor: trend_pr + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: pr + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: pr trend [mm kg m-3 day-1 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Precipitation + psl_trends: + variables: + psl: + preprocessor: trend_psl + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: psl + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: psl trend [m-1 kg s-2 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Sea Level Pressure + ua200_trends: + variables: + ua: + preprocessor: trend_ua200 + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: ua + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + plot_object_methods: + set_xlabel: region + set_ylabel: ua trend [m s-1 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Zonal Wind at 200 hPa + hus200_trends: + variables: + hus: + preprocessor: trend_hus200 + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: hus + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + plot_object_methods: + set_xlabel: region + set_ylabel: hus trend [yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Specific Humidity at 200 hPa diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_sea_ice_area_basic.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_sea_ice_area_basic.yml new file mode 100644 index 000000000..d3d6a95b3 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_sea_ice_area_basic.yml @@ -0,0 +1,200 @@ +documentation: + title: Seasonal cycle of NH/SH sea ice area + description: 'Plots of the seasonal cycle and time series of NH and SH sea ice area. + + ' + authors: + - lauer_axel + maintainer: + - lauer_axel +datasets: +- project: CMIP6 + activity: CMIP + dataset: CanESM5 + ensemble: r1i1p1f1 + institute: CCCma + exp: historical + grid: gn + mip: SImon +preprocessors: + pp_nh: + extract_region: + start_longitude: 0 + end_longitude: 360 + start_latitude: 30 + end_latitude: 90 + climate_statistics: + period: month + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + pp_nh_sep: + extract_region: + start_longitude: 0 + end_longitude: 360 + start_latitude: 30 + end_latitude: 90 + extract_month: + month: 9 + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + pp_sh: + extract_region: + start_longitude: 0 + end_longitude: 360 + start_latitude: -90 + end_latitude: -30 + climate_statistics: + period: month + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + pp_sh_feb: + extract_region: + start_longitude: 0 + end_longitude: 360 + start_latitude: -90 + end_latitude: -30 + extract_month: + month: 2 + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 +diagnostics: + siarea_seas: + description: Create seasonal cycle plot of sea ice area. + variables: + sea_ice_area_nh: + short_name: siconc + timerange: 1995/2014 + preprocessor: pp_nh + project: CMIP6 + mip: SImon + exp: historical + ensemble: r1i1p1f1 + grid: gr + reference_dataset: OSI-450-nh + additional_datasets: + - &id002 + dataset: OSI-450-nh + mip: OImon + project: OBS + supplementary_variables: &id001 + - short_name: areacello + mip: fx + tier: 2 + type: reanaly + version: v3 + sea_ice_area_sh: + short_name: siconc + timerange: 1995/2014 + preprocessor: pp_sh + project: CMIP6 + mip: SImon + exp: historical + ensemble: r1i1p1f1 + grid: gr + reference_dataset: OSI-450-sh + additional_datasets: + - &id003 + dataset: OSI-450-sh + mip: OImon + project: OBS + supplementary_variables: *id001 + tier: 2 + type: reanaly + version: v3 + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + facet_used_for_labels: dataset + plots: + annual_cycle: + caption: 20-year average seasonal cycle of the sea ice area in million + km2 from CanESM5.r1i1p1f1.gn compared with OSI-450. + pyplot_kwargs: + title: Sea ice area (million km2) + plot_kwargs: + OSI-450-nh: + color: blue + label: OSISAF/CCI + linestyle: '-' + linewidth: 2 + zorder: 3 + OSI-450-sh: + color: blue + label: OSISAF/CCI + linestyle: '-' + linewidth: 2 + zorder: 3 + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 + siarea_min: + description: Create time series of September/February sea ice area. + variables: + sea_ice_area_nh_sep: + short_name: siconc + timerange: 1979/2014 + preprocessor: pp_nh_sep + project: CMIP6 + mip: SImon + exp: historical + ensemble: r1i1p1f1 + grid: gr + reference_dataset: OSI-450-nh + additional_datasets: + - *id002 + sea_ice_area_sh_feb: + short_name: siconc + timerange: 1979/2014 + preprocessor: pp_sh_feb + project: CMIP6 + mip: SImon + exp: historical + ensemble: r1i1p1f1 + grid: gr + reference_dataset: OSI-450-sh + additional_datasets: + - *id003 + scripts: + allplots: + script: monitor/multi_datasets.py + plot_folder: '{plot_dir}' + group_variables_by: variable_group + facet_used_for_labels: dataset + plots: + timeseries: + caption: Time series of NH September/SH February sea ice area in million + km2 from CanESM5.r1i1p1f1.gn compared with OSI-450. + pyplot_kwargs: + title: Sea ice area (million km2) + plot_kwargs: + OSI-450-nh: + color: blue + label: OSISAF/CCI + linestyle: '-' + linewidth: 2 + zorder: 3 + OSI-450-sh: + color: blue + label: OSISAF/CCI + linestyle: '-' + linewidth: 2 + zorder: 3 + default: + color: red + label: '{dataset}' + linestyle: '-' + linewidth: 2 + zorder: 4 diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_sea_ice_sensitivity.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_sea_ice_sensitivity.yml new file mode 100644 index 000000000..a695a3522 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_sea_ice_sensitivity.yml @@ -0,0 +1,214 @@ +documentation: + title: Sea ice sensitivity + description: 'Recipe for quantifying the sensitivity of sea ice to global warming. + + Siconc data is summed for each hemisphere and then compared to the + + change in globally meaned, annually meaned surface air temperature. + + In the northern hemisphere, September sea ice data is used. + + In the southern hemisphere, annual mean sea ice data is used. + + Two plots are produced for each hemisphere, one showing the gradient + + of the direct regression of sea ice area over temperature, and the + + other showing the two separate trends over time. + + ' + authors: + - parsons_naomi + - sellar_alistair + - blockley_ed + maintainer: + - parsons_naomi +defaults: + ensemble: r1i1p1f1 + exp: historical + grid: gn + project: CMIP6 +datasets: +- project: CMIP6 + activity: CMIP + dataset: CanESM5 + ensemble: r1i1p1f1 + institute: CCCma + exp: historical + grid: gn + timerange: 1979/2014 +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + timerange: 1979/2014 +- project: CMIP6 + activity: CMIP + dataset: HadGEM3-GC31-LL + ensemble: r1i1p1f3 + institute: MOHC + exp: historical + grid: gn + timerange: 1979/2014 +preprocessors: + extract_test_period: + extract_time: + start_day: 1 + start_month: 1 + start_year: 1979 + end_day: 31 + end_month: 12 + end_year: 2014 + extract_sept: + extract_month: + month: 9 + nh_total_area: + extract_region: + start_longitude: 0 + end_longitude: 360 + start_latitude: 0 + end_latitude: 90 + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + sh_total_area: + extract_region: + start_longitude: 0 + end_longitude: 360 + start_latitude: -90 + end_latitude: 0 + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + global_mean: + area_statistics: + operator: mean + annual_mean: + annual_statistics: + operator: mean + pp_arctic_sept_sea_ice: + extract_time: + start_day: 1 + start_month: 1 + start_year: 1979 + end_day: 31 + end_month: 12 + end_year: 2014 + extract_month: + month: 9 + extract_region: + start_longitude: 0 + end_longitude: 360 + start_latitude: 0 + end_latitude: 90 + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + pp_antarctic_avg_ann_sea_ice: + extract_time: + start_day: 1 + start_month: 1 + start_year: 1979 + end_day: 31 + end_month: 12 + end_year: 2014 + annual_statistics: + operator: mean + extract_region: + start_longitude: 0 + end_longitude: 360 + start_latitude: -90 + end_latitude: 0 + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + pp_avg_ann_global_temp: + extract_time: + start_day: 1 + start_month: 1 + start_year: 1979 + end_day: 31 + end_month: 12 + end_year: 2014 + area_statistics: + operator: mean + annual_statistics: + operator: mean +diagnostics: + arctic: + description: Plots September sea ice sensitivity above 0 latitude in millions + of square kilometres + variables: + siconc: + preprocessor: pp_arctic_sept_sea_ice + mip: SImon + tas: + preprocessor: pp_avg_ann_global_temp + mip: Amon + scripts: + sea_ice_sensitivity_script: + script: seaice/seaice_sensitivity.py + observations: + observation period: 1979-2014 + sea ice sensitivity (Notz-style plot): + mean: -4.01 + standard deviation: 0.32 + plausible range: 1.28 + annual trends (Roach-style plot): + first point: + GMST trend: null + SIA trend: null + Pearson CC of SIA over GMST: null + significance of SIA over GMST: null + second point: + GMST trend: null + SIA trend: null + Pearson CC of SIA over GMST: null + significance of SIA over GMST: null + third point: + GMST trend: null + SIA trend: null + Pearson CC of SIA over GMST: null + significance of SIA over GMST: null + antarctic: + description: Plots annual mean sea ice sensitivity below 0 latitude in millions + of square kilometres + variables: + siconc: + preprocessor: pp_antarctic_avg_ann_sea_ice + mip: SImon + tas: + preprocessor: pp_avg_ann_global_temp + mip: Amon + scripts: + sea_ice_sensitivity_script: + script: seaice/seaice_sensitivity.py + observations: + observation period: null + sea ice sensitivity (Notz-style plot): + mean: null + standard deviation: null + plausible range: null + annual trends (Roach-style plot): + first point: + GMST trend: null + SIA trend: null + Pearson CC of SIA over GMST: null + significance of SIA over GMST: null + second point: + GMST trend: null + SIA trend: null + Pearson CC of SIA over GMST: null + significance of SIA over GMST: null + third point: + GMST trend: null + SIA trend: null + Pearson CC of SIA over GMST: null + significance of SIA over GMST: null diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_transient_climate_response.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_transient_climate_response.yml new file mode 100644 index 000000000..e54c87563 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_transient_climate_response.yml @@ -0,0 +1,48 @@ +documentation: + title: 'Transient Climate Response (TCR) + + ' + description: 'Calculate Transient Climate Response (TCR). + + ' + authors: + - schlund_manuel + maintainer: + - schlund_manuel + references: + - gregory08jgr + projects: + - crescendo +preprocessors: + spatial_mean: + area_statistics: + operator: mean +diagnostics: + tcr: + description: Calculate TCR. + variables: + tas: + preprocessor: spatial_mean + scripts: + calculate: + script: climate_metrics/tcr.py + calculate_mmm: false +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: 1pctCO2 + grid: gn + mip: Amon + timerange: 01010116T120000/01801216T120000 +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: piControl + grid: gn + mip: Amon + timerange: 01010116T120000/01801216T120000 diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_transient_climate_response_emissions.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_transient_climate_response_emissions.yml new file mode 100644 index 000000000..266d29dbf --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_transient_climate_response_emissions.yml @@ -0,0 +1,109 @@ +documentation: + title: 'Transient Climate Response to Cumulative CO2 Emissions (TCRE). + + ' + description: 'Calculate Transient Climate Response to Cumulative CO2 Emissions (TCRE). + + ' + authors: + - schlund_manuel + maintainer: + - schlund_manuel + references: + - sanderson24gmd + domains: + - global + realms: + - atmos + themes: + - carbon + - bgphys +datasets_target_exp: +- project: CMIP6 + dataset: MPI-ESM1-2-LR + ensemble: r1i1p1f1 + grid: gn + timerange: 1850/1914 +datasets_control_exp: +- project: CMIP6 + dataset: MPI-ESM1-2-LR + ensemble: r1i1p1f1 + grid: gn + timerange: 1850/1914 +preprocessors: + global_annual_mean_anomaly: + custom_order: true + area_statistics: + operator: mean + annual_statistics: + operator: mean + global_cumulative_sum: + custom_order: true + area_statistics: + operator: sum + annual_statistics: + operator: mean + cumulative_sum: + coord: time + weights: true + convert_units: + units: Pg +diagnostics: + tcre: + variables: + tas_esm-1pctCO2: + short_name: tas + preprocessor: global_annual_mean_anomaly + additional_datasets: + - project: CMIP6 + activity: C4MIP CDRMIP + dataset: MPI-ESM1-2-LR + ensemble: r1i1p1f1 + institute: MPI-M + exp: esm-1pctCO2 + grid: gn + mip: Amon + timerange: 18500116T120000/19141216T120000 + tas_esm-piControl: + short_name: tas + preprocessor: global_annual_mean_anomaly + additional_datasets: + - project: CMIP6 + activity: CMIP + dataset: MPI-ESM1-2-LR + ensemble: r1i1p1f1 + institute: MPI-M + exp: esm-piControl + grid: gn + mip: Amon + timerange: 18500116T120000/19141216T120000 + fco2antt: + preprocessor: global_cumulative_sum + additional_datasets: + - project: CMIP6 + activity: C4MIP CDRMIP + dataset: MPI-ESM1-2-LR + ensemble: r1i1p1f1 + institute: MPI-M + exp: esm-1pctCO2 + grid: gn + mip: Amon + timerange: 18500116T120000/19141216T120000 + scripts: + calculate_tcre: + script: climate_metrics/tcre.py + calc_tcre_period: + - 45 + - 65 + caption: "Global annual mean near-surface air temperature anomaly \u0394T\ + \ vs.\nglobal annual cumulative CO2 emissions E of the emission-driven 1%\n\ + CO2 increase per year experiment for model MPI-ESM1-2-LR (ensemble\nmember\ + \ r1i1p1f1). The transient climate response to cumulative CO2\nEmissions\ + \ (TCRE) is defined as the 20-year average \u0394T centered at\nthe time\ + \ where cumulative CO2 emissions E reach 1000 PgC.\n" + exp_target: esm-1pctCO2 + legend_kwargs: false + pyplot_kwargs: + title: MPI-ESM1-2-LR (ensemble member r1i1p1f1) + xlabel: E [PgC] + ylabel: "\u0394T [K]" diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_zero_emission_commitment.yml b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_zero_emission_commitment.yml new file mode 100644 index 000000000..252183d7a --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/recipes/recipe_zero_emission_commitment.yml @@ -0,0 +1,62 @@ +documentation: + title: 'Zero Emission Commitment (ZEC) + + ' + description: 'Calculate Zero Emission Commitment (ZEC) temperature. + + ' + authors: + - gier_bettina + maintainer: + - gier_bettina + references: + - macdougall20 + domains: + - global + realms: + - atmos +preprocessors: + spatial_mean: + area_statistics: + operator: mean + annual_statistics: + operator: mean + anomaly_base: + area_statistics: + operator: mean + climate_statistics: + operator: mean + period: full +diagnostics: + zec: + description: Calculate ZEC for all available models. + variables: + tas_base: + short_name: tas + preprocessor: anomaly_base + additional_datasets: + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: 1pctCO2 + grid: gn + mip: Amon + timerange: 01580116T120000/01780116T120000 + tas: + preprocessor: spatial_mean + additional_datasets: + - project: CMIP6 + activity: C4MIP CDRMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: esm-1pct-brch-1000PgC + grid: gn + mip: Amon + timerange: 01680116T120000/02681216T120000 + scripts: + zec: + script: climate_metrics/zec.py + zec_year: 50 diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_base.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_base.py index 701687c24..29fcebfc7 100644 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_base.py +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_base.py @@ -9,6 +9,7 @@ from climate_ref_esmvaltool.diagnostics.base import ESMValToolDiagnostic from climate_ref_esmvaltool.types import Recipe +from climate_ref_core.datasets import SourceDatasetType from climate_ref_core.metric_values import SeriesMetricValue as SeriesMetricValueType from climate_ref_core.metric_values.typing import SeriesDefinition from climate_ref_core.pycmec.controlled_vocabulary import CV @@ -20,7 +21,11 @@ def mock_diagnostic(): class MockDiagnostic(ESMValToolDiagnostic): base_recipe = "examples/recipe_python.yml" - def update_recipe(self, recipe: Recipe, input_files: pandas.DataFrame) -> None: + def update_recipe( + self, + recipe: Recipe, + input_files: dict[SourceDatasetType, pandas.DataFrame], + ) -> None: pass return MockDiagnostic() diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_climate_at_global_warming_levels.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_climate_at_global_warming_levels.py deleted file mode 100644 index 1d14a4e2d..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_climate_at_global_warming_levels.py +++ /dev/null @@ -1,41 +0,0 @@ -from pathlib import Path - -import pandas -import pytest -from climate_ref_esmvaltool.diagnostics import ClimateAtGlobalWarmingLevels -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import DatasetCollection, ExecutionDatasetCollection, SourceDatasetType - - -@pytest.fixture -def metric_dataset(): - return ExecutionDatasetCollection( - { - SourceDatasetType.CMIP6: DatasetCollection( - datasets=pandas.read_json( - Path(__file__).parent / "input_files_climate_at_global_warming_levels.json" - ), - slug_column="test", - ), - } - ) - - -def test_update_recipe(metric_dataset): - input_files = {k: v.datasets for k, v in metric_dataset.items()} - recipe = load_recipe("recipe_calculate_gwl_exceedance_stats.yml") - ClimateAtGlobalWarmingLevels().update_recipe(recipe, input_files) - assert "datasets" in recipe - datasets = recipe["datasets"] - assert len(datasets) == 6 - assert datasets[0]["exp"] == ["historical", "ssp126"] - - for dataset in datasets: - # timerange is defined per diagnostic - assert "timerange" not in datasets - for diagnostic in recipe["diagnostics"].values(): - for variable in diagnostic["variables"].values(): - assert "preprocessor" in variable - assert "timerange" in variable - assert "additional_datasets" not in diagnostic diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_climate_drivers_for_fire.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_climate_drivers_for_fire.py deleted file mode 100644 index fa59eb90f..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_climate_drivers_for_fire.py +++ /dev/null @@ -1,46 +0,0 @@ -from pathlib import Path - -import pandas -import pytest -from climate_ref_esmvaltool.diagnostics.climate_drivers_for_fire import ClimateDriversForFire -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import ( - DatasetCollection, - ExecutionDatasetCollection, - SourceDatasetType, -) - - -@pytest.fixture -def metric_dataset(): - return ExecutionDatasetCollection( - { - SourceDatasetType.CMIP6: DatasetCollection( - datasets=pandas.read_json( - Path(__file__).parent / "input_files_climate_drivers_for_fire.json" - ), - slug_column="test", - ), - } - ) - - -def test_update_recipe(metric_dataset): - input_files = {k: v.datasets for k, v in metric_dataset.items()} - recipe = load_recipe(ClimateDriversForFire.base_recipe) - ClimateDriversForFire().update_recipe(recipe, input_files) - assert len(recipe["diagnostics"]) == 1 - assert recipe["datasets"] == [ - { - "activity": "CMIP", - "dataset": "ACCESS-ESM1-5", - "end_year": 2014, - "ensemble": "r1i1p1f1", - "exp": "historical", - "grid": "gn", - "institute": "CSIRO", - "project": "CMIP6", - "start_year": 2013, - }, - ] diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_cloud_radiative_effects.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_cloud_radiative_effects.py deleted file mode 100644 index 463551b3e..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_cloud_radiative_effects.py +++ /dev/null @@ -1,33 +0,0 @@ -from pathlib import Path - -import pandas -from climate_ref_esmvaltool.diagnostics import CloudRadiativeEffects -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import SourceDatasetType - - -def test_update_recipe(): - # Insert the following code in CloudRadiativeEffects.update_recipe to - # save an example input dataframe: - # input_files.to_json(Path("input_files_cloud_radiative_effects.json"), indent=4, date_format="iso") - input_files = { - SourceDatasetType.CMIP6: pandas.read_json( - Path(__file__).parent / "input_files_cloud_radiative_effects.json" - ) - } - recipe = load_recipe("ref/recipe_ref_cre.yml") - CloudRadiativeEffects().update_recipe(recipe, input_files) - assert recipe["datasets"] == [ - { - "activity": "CMIP", - "dataset": "ACCESS-ESM1-5", - "ensemble": "r1i1p1f1", - "exp": "historical", - "grid": "gn", - "institute": "CSIRO", - "mip": "Amon", - "project": "CMIP6", - }, - ] - assert recipe["timerange_for_models"] == "20010101T000000/20141216T120000" diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_cloud_scatterplots.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_cloud_scatterplots.py deleted file mode 100644 index 6fa85e53e..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_cloud_scatterplots.py +++ /dev/null @@ -1,63 +0,0 @@ -from pathlib import Path - -import pandas -from climate_ref_esmvaltool.diagnostics.cloud_scatterplots import ( - CloudScatterplotCltSwcre, - CloudScatterplotsReference, -) -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import SourceDatasetType - - -def test_update_cmip6_recipe(): - # Insert the following code in update_recipe to save an example input dataframe: - # input_files[SourceDatasetType.CMIP6].to_json( - # Path("input_files_cloud_scatterplots_cmip6.json"), - # indent=4, - # date_format="iso", - # ) - input_files = { - SourceDatasetType.CMIP6: pandas.read_json( - Path(__file__).parent / "input_files_cloud_scatterplots_cmip6.json" - ) - } - recipe = load_recipe("ref/recipe_ref_scatterplot.yml") - CloudScatterplotCltSwcre().update_recipe(recipe, input_files) - assert "datasets" not in recipe - assert len(recipe["diagnostics"]) == 1 - diagnostic = recipe["diagnostics"]["plot_joint_clt_swcre_model"] - assert set(diagnostic["variables"]) == {"clt", "swcre"} - for variable in diagnostic["variables"].values(): - assert "additional_datasets" not in variable - assert len(diagnostic["additional_datasets"]) == 1 - assert diagnostic["scripts"]["plot"]["suptitle"].startswith("CMIP6") - - -def test_update_reference_recipe(): - # Insert the following code in update_recipe to save an example input dataframe: - # input_files[SourceDatasetType.obs4MIPs].to_json( - # Path("input_files_cloud_scatterplots_obs4mips.json"), - # indent=4, - # date_format="iso", - # orient="records", - # ) - input_files = { - SourceDatasetType.obs4MIPs: pandas.read_json( - Path(__file__).parent / "input_files_cloud_scatterplots_obs4mips.json" - ) - } - recipe = load_recipe("ref/recipe_ref_scatterplot.yml") - CloudScatterplotsReference().update_recipe(recipe, input_files) - assert "datasets" not in recipe - assert len(recipe["diagnostics"]) == 4 - - diagnostic = recipe["diagnostics"]["plot_joint_cli_ta_ref"] - assert "additional_datasets" not in diagnostic - assert set(diagnostic["variables"]) == {"cli", "ta"} - for variable in diagnostic["variables"].values(): - assert len(variable["additional_datasets"]) == 1 - assert diagnostic["scripts"]["plot"]["suptitle"] == "CALIPSO-ICECLOUD / ERA-5 2007/2015" - - diagnostic = recipe["diagnostics"]["plot_joint_clwvi_pr_ref"] - diagnostic["variables"]["pr"]["additional_datasets"][0]["dataset"] == "GPCP-V2.3" diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_ecs.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_ecs.py deleted file mode 100644 index 929201dc8..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_ecs.py +++ /dev/null @@ -1,73 +0,0 @@ -from pathlib import Path - -import numpy as np -import pandas -import pytest -import xarray as xr -from climate_ref_esmvaltool.diagnostics import EquilibriumClimateSensitivity -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import DatasetCollection, ExecutionDatasetCollection, SourceDatasetType -from climate_ref_core.pycmec.metric import CMECMetric -from climate_ref_core.pycmec.output import CMECOutput - - -@pytest.fixture -def metric_dataset(): - return ExecutionDatasetCollection( - { - SourceDatasetType.CMIP6: DatasetCollection( - datasets=pandas.read_json(Path(__file__).parent / "input_files_ecs.json"), - slug_column="test", - ), - } - ) - - -def test_update_recipe(metric_dataset): - input_files = {k: v.datasets for k, v in metric_dataset.items()} - recipe = load_recipe("recipe_ecs.yml") - EquilibriumClimateSensitivity().update_recipe(recipe, input_files) - assert len(recipe["datasets"]) == 2 - assert len(recipe["diagnostics"]) == 1 - assert set(recipe["diagnostics"]["ecs"]["variables"]) == {"tas", "rtnt"} - undesired_keys = [ - "CMIP5_RTMT", - "CMIP6_RTMT", - "CMIP5_RTNT", - "CMIP6_RTNT", - "ECS_SCRIPT", - "SCATTERPLOT", - ] - for key in undesired_keys: - assert key not in recipe - - -def test_format_output(tmp_path, metric_dataset): - result_dir = tmp_path - subdir = result_dir / "work" / "ecs" / "calculate" - subdir.mkdir(parents=True) - ecs = xr.Dataset( - data_vars={ - "ecs": (["dim0"], np.array([1.0])), - }, - ) - ecs.to_netcdf(subdir / "ecs.nc") - lambda_ = xr.Dataset( - data_vars={ - "lambda": (["dim0"], np.array([2.0])), - }, - ) - lambda_.to_netcdf(subdir / "lambda.nc") - - metric_args, output_args = EquilibriumClimateSensitivity().format_result( - result_dir, - execution_dataset=metric_dataset, - metric_args=CMECMetric.create_template(), - output_args=CMECOutput.create_template(), - ) - - CMECMetric.model_validate(metric_args) - assert metric_args.RESULTS["global"]["ecs"] == 1.0 - assert metric_args.RESULTS["global"]["lambda"] == 2.0 - CMECOutput.model_validate(output_args) diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_enso.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_enso.py deleted file mode 100644 index 3626398e2..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_enso.py +++ /dev/null @@ -1,57 +0,0 @@ -from pathlib import Path - -import pandas -from climate_ref_esmvaltool.diagnostics import ENSOBasicClimatology, ENSOCharacteristics -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import SourceDatasetType - - -def test_enso_basicclimatology_update_recipe(): - # Insert the following code in CloudRadiativeEffects.update_recipe to - # save an example input dataframe: - # input_files.to_json(Path("input_files_enso_climatology.json"), indent=4, date_format="iso") - input_files = { - SourceDatasetType.CMIP6: pandas.read_json( - Path(__file__).parent / "input_files_enso_climatology.json" - ), - } - recipe = load_recipe("ref/recipe_enso_basicclimatology.yml") - ENSOBasicClimatology().update_recipe(recipe, input_files) - assert "datasets" not in recipe - for diagnostic in recipe["diagnostics"].values(): - for variable in diagnostic["variables"].values(): - assert variable["additional_datasets"][-1]["dataset"] == "ACCESS-ESM1-5" - - -def test_enso_characteristics_update_recipe(): - # Insert the following code in CloudRadiativeEffects.update_recipe to - # save an example input dataframe: - # input_files.to_json(Path("input_files_enso_characteristics.json"), indent=4, date_format="iso") - input_files = { - SourceDatasetType.CMIP6: pandas.read_json( - Path(__file__).parent / "input_files_enso_characteristics.json" - ), - } - recipe = load_recipe("ref/recipe_enso_characteristics.yml") - ENSOCharacteristics().update_recipe(recipe, input_files) - assert recipe["datasets"] == [ - { - "activity": "CMIP", - "dataset": "ACCESS-ESM1-5", - "ensemble": "r1i1p1f1", - "exp": "historical", - "grid": "gn", - "institute": "CSIRO", - "mip": "Omon", - "project": "CMIP6", - "timerange": "18500116T120000/20141216T120000", - }, - { - "dataset": "TROPFLUX", - "project": "OBS6", - "tier": 2, - "type": "reanaly", - "version": "v1", - }, - ] diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_recipes.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_recipes.py new file mode 100644 index 000000000..09d2409bb --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_recipes.py @@ -0,0 +1,39 @@ +"""Test that the recipes are updated correctly.""" + +from pathlib import Path + +import pandas as pd +import pytest +from climate_ref_esmvaltool import provider +from climate_ref_esmvaltool.diagnostics.base import ESMValToolDiagnostic +from pytest_regressions.file_regression import FileRegressionFixture + +from climate_ref.solver import solve_executions +from climate_ref_core.datasets import SourceDatasetType + + +@pytest.mark.parametrize( + "diagnostic", [pytest.param(diagnostic, id=diagnostic.slug) for diagnostic in provider.diagnostics()] +) +def test_write_recipe( + tmp_path: Path, + file_regression: FileRegressionFixture, + data_catalog: dict[SourceDatasetType, pd.DataFrame], + diagnostic: ESMValToolDiagnostic, +): + execution = next( + solve_executions( + data_catalog=data_catalog, + diagnostic=diagnostic, + provider=diagnostic.provider, + ) + ) + definition = execution.build_execution_definition(output_root=tmp_path) + definition.output_directory.mkdir(parents=True, exist_ok=True) + recipe_path = diagnostic.write_recipe(definition=definition) + encoding = "utf-8" + file_regression.check( + recipe_path.read_text(encoding), + encoding=encoding, + fullpath=Path(__file__).parent / "recipes" / f"recipe-{diagnostic.slug}.yml".replace("-", "_"), + ) diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_sea_ice_area.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_sea_ice_area.py deleted file mode 100644 index 9351bcfdc..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_sea_ice_area.py +++ /dev/null @@ -1,20 +0,0 @@ -from pathlib import Path - -import pandas -from climate_ref_esmvaltool.diagnostics import SeaIceAreaBasic -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import SourceDatasetType - - -def test_update_recipe(): - input_files = { - SourceDatasetType.CMIP6: pandas.read_json(Path(__file__).parent / "input_files_sea_ice_area.json") - } - recipe = load_recipe("ref/recipe_ref_sea_ice_area_basic.yml") - SeaIceAreaBasic().update_recipe(recipe, input_files) - assert len(recipe["datasets"]) == 1 - dataset = recipe["datasets"][0] - assert dataset["dataset"] == input_files[SourceDatasetType.CMIP6].iloc[0].source_id - assert "timerange" not in dataset - assert len(recipe["diagnostics"]) == 2 diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_sea_ice_sensitivity.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_sea_ice_sensitivity.py deleted file mode 100644 index 1ff23320b..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_sea_ice_sensitivity.py +++ /dev/null @@ -1,52 +0,0 @@ -from pathlib import Path - -import pandas -from climate_ref_esmvaltool.diagnostics import SeaIceSensitivity -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import SourceDatasetType - - -def test_update_recipe(): - # Insert the following code in SeaIceSensitivity.update_recipe to - # save an example input dataframe: - # input_files.to_json(Path("input_files_sea_ice_sensitivity.json"), indent=4, date_format="iso") - input_files = { - SourceDatasetType.CMIP6: pandas.read_json( - Path(__file__).parent / "input_files_sea_ice_sensitivity.json" - ) - } - recipe = load_recipe(SeaIceSensitivity.base_recipe) - SeaIceSensitivity().update_recipe(recipe, input_files) - assert recipe["datasets"] == [ - { - "project": "CMIP6", - "activity": "CMIP", - "dataset": "CanESM5", - "ensemble": "r1i1p1f1", - "institute": "CCCma", - "exp": "historical", - "grid": "gn", - "timerange": "1979/2014", - }, - { - "project": "CMIP6", - "activity": "CMIP", - "dataset": "ACCESS-ESM1-5", - "ensemble": "r1i1p1f1", - "institute": "CSIRO", - "exp": "historical", - "grid": "gn", - "timerange": "1979/2014", - }, - { - "project": "CMIP6", - "activity": "CMIP", - "dataset": "HadGEM3-GC31-LL", - "ensemble": "r1i1p1f3", - "institute": "MOHC", - "exp": "historical", - "grid": "gn", - "timerange": "1979/2014", - }, - ] diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_tcr.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_tcr.py deleted file mode 100644 index 20e6f608c..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_tcr.py +++ /dev/null @@ -1,63 +0,0 @@ -from pathlib import Path - -import numpy as np -import pandas -import pytest -import xarray as xr -from climate_ref_esmvaltool.diagnostics import TransientClimateResponse -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import DatasetCollection, ExecutionDatasetCollection, SourceDatasetType -from climate_ref_core.pycmec.metric import CMECMetric -from climate_ref_core.pycmec.output import CMECOutput - - -@pytest.fixture -def metric_dataset(): - return ExecutionDatasetCollection( - { - SourceDatasetType.CMIP6: DatasetCollection( - datasets=pandas.read_json(Path(__file__).parent / "input_files_ecs.json"), - slug_column="test", - ), - } - ) - - -def test_update_recipe(metric_dataset): - input_files = {k: v.datasets for k, v in metric_dataset.items()} - recipe = load_recipe("recipe_tcr.yml") - TransientClimateResponse().update_recipe(recipe, input_files) - assert len(recipe["datasets"]) == 2 - assert len(recipe["diagnostics"]) == 1 - assert set(recipe["diagnostics"]["tcr"]["variables"]) == {"tas"} - undesired_keys = [ - "TCR", - "SCATTERPLOT", - "VAR_SETTING", - ] - for key in undesired_keys: - assert key not in recipe - - -def test_format_output(tmp_path, metric_dataset): - result_dir = tmp_path - subdir = result_dir / "work" / "tcr" / "calculate" - subdir.mkdir(parents=True) - tcr = xr.Dataset( - data_vars={ - "tcr": (["dim0"], np.array([1.0], dtype=np.float32)), - }, - ) - tcr.to_netcdf(subdir / "tcr.nc") - - metric_args, output_args = TransientClimateResponse().format_result( - result_dir, - execution_dataset=metric_dataset, - metric_args=CMECMetric.create_template(), - output_args=CMECOutput.create_template(), - ) - - CMECMetric.model_validate(metric_args) - assert metric_args.RESULTS["global"]["tcr"] == 1.0 - CMECOutput.model_validate(output_args) diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_tcre.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_tcre.py deleted file mode 100644 index 2ccc67f32..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_tcre.py +++ /dev/null @@ -1,108 +0,0 @@ -from pathlib import Path - -import numpy as np -import pandas -import pytest -import xarray as xr -from climate_ref_esmvaltool.diagnostics import TransientClimateResponseEmissions -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import DatasetCollection, ExecutionDatasetCollection, SourceDatasetType -from climate_ref_core.pycmec.metric import CMECMetric -from climate_ref_core.pycmec.output import CMECOutput - - -@pytest.fixture -def metric_dataset(): - return ExecutionDatasetCollection( - { - SourceDatasetType.CMIP6: DatasetCollection( - datasets=pandas.read_json(Path(__file__).parent / "input_files_tcre.json"), - slug_column="test", - ), - } - ) - - -def test_update_recipe(metric_dataset): - # Insert the following code in ZeroEmissionCommitment.update_recipe to - # save an example input dataframe: - # input_files.to_json(Path("input_files_tcre.json"), orient='records', indent=4, date_format="iso") - input_files = {k: v.datasets for k, v in metric_dataset.items()} - recipe = load_recipe("recipe_tcre.yml") - TransientClimateResponseEmissions().update_recipe(recipe, input_files) - assert recipe["diagnostics"]["tcre"]["variables"] == { - "tas_esm-1pctCO2": { - "short_name": "tas", - "preprocessor": "global_annual_mean_anomaly", - "additional_datasets": [ - { - "project": "CMIP6", - "activity": "C4MIP CDRMIP", - "dataset": "MPI-ESM1-2-LR", - "ensemble": "r1i1p1f1", - "institute": "MPI-M", - "exp": "esm-1pctCO2", - "grid": "gn", - "mip": "Amon", - "timerange": "18500116T120000/19141216T120000", - } - ], - }, - "tas_esm-piControl": { - "short_name": "tas", - "preprocessor": "global_annual_mean_anomaly", - "additional_datasets": [ - { - "project": "CMIP6", - "activity": "CMIP", - "dataset": "MPI-ESM1-2-LR", - "ensemble": "r1i1p1f1", - "institute": "MPI-M", - "exp": "esm-piControl", - "grid": "gn", - "mip": "Amon", - "timerange": "18500116T120000/19141216T120000", - } - ], - }, - "fco2antt": { - "preprocessor": "global_cumulative_sum", - "additional_datasets": [ - { - "project": "CMIP6", - "activity": "C4MIP CDRMIP", - "dataset": "MPI-ESM1-2-LR", - "ensemble": "r1i1p1f1", - "institute": "MPI-M", - "exp": "esm-1pctCO2", - "grid": "gn", - "mip": "Amon", - "timerange": "18500116T120000/19141216T120000", - } - ], - }, - } - - -def test_format_output(tmp_path, metric_dataset): - result_dir = tmp_path - subdir = result_dir / "work" / "tcre" / "calculate_tcre" - subdir.mkdir(parents=True) - tcr = xr.Dataset( - data_vars={ - "tcre": (["dim0"], np.array([1.0], dtype=np.float32)), - }, - ) - tcr.to_netcdf(subdir / "tcre.nc") - - metric_args, output_args = TransientClimateResponseEmissions().format_result( - result_dir, - execution_dataset=metric_dataset, - metric_args=CMECMetric.create_template(), - output_args=CMECOutput.create_template(), - ) - - CMECMetric.model_validate(metric_args) - assert metric_args.RESULTS["global"]["tcre"] == 1.0 - CMECOutput.model_validate(output_args) diff --git a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_zec.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_zec.py deleted file mode 100644 index 412328691..000000000 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_zec.py +++ /dev/null @@ -1,92 +0,0 @@ -from pathlib import Path - -import numpy as np -import pandas -import pytest -import xarray as xr -from climate_ref_esmvaltool.diagnostics import ZeroEmissionCommitment -from climate_ref_esmvaltool.recipe import load_recipe - -from climate_ref_core.datasets import DatasetCollection, ExecutionDatasetCollection, SourceDatasetType -from climate_ref_core.pycmec.metric import CMECMetric -from climate_ref_core.pycmec.output import CMECOutput - - -@pytest.fixture -def metric_dataset(): - return ExecutionDatasetCollection( - { - SourceDatasetType.CMIP6: DatasetCollection( - datasets=pandas.read_json(Path(__file__).parent / "input_files_zec.json"), - slug_column="test", - ), - } - ) - - -def test_update_recipe(metric_dataset): - # Insert the following code in ZeroEmissionCommitment.update_recipe to - # save an example input dataframe: - # input_files.to_json(Path("input_files_zec.json"), indent=4, date_format="iso") - input_files = {k: v.datasets for k, v in metric_dataset.items()} - recipe = load_recipe("recipe_zec.yml") - ZeroEmissionCommitment().update_recipe(recipe, input_files) - assert len(recipe["diagnostics"]) == 1 - assert recipe["diagnostics"]["zec"]["variables"] == { - "tas_base": { - "short_name": "tas", - "preprocessor": "anomaly_base", - "additional_datasets": [ - { - "project": "CMIP6", - "activity": "CMIP", - "dataset": "ACCESS-ESM1-5", - "ensemble": "r1i1p1f1", - "institute": "CSIRO", - "exp": "1pctCO2", - "grid": "gn", - "mip": "Amon", - "timerange": "01580116T120000.000/01780116T120000.000", - }, - ], - }, - "tas": { - "preprocessor": "spatial_mean", - "additional_datasets": [ - { - "project": "CMIP6", - "activity": "C4MIP CDRMIP", - "dataset": "ACCESS-ESM1-5", - "ensemble": "r1i1p1f1", - "institute": "CSIRO", - "exp": "esm-1pct-brch-1000PgC", - "grid": "gn", - "mip": "Amon", - "timerange": "01680116T120000.000/02681216T120000.000", - }, - ], - }, - } - - -def test_format_output(tmp_path, metric_dataset): - result_dir = tmp_path - subdir = result_dir / "work" / "zec" / "zec" - subdir.mkdir(parents=True) - zec = xr.Dataset( - data_vars={ - "zec": (["dim0"], np.array([-0.11])), - }, - ) - zec.to_netcdf(subdir / "zec_50.nc") - - metric_args, output_args = ZeroEmissionCommitment().format_result( - result_dir, - execution_dataset=metric_dataset, - metric_args=CMECMetric.create_template(), - output_args=CMECOutput.create_template(), - ) - - CMECMetric.model_validate(metric_args) - assert metric_args.RESULTS["global"]["zec"] == -0.11 - CMECOutput.model_validate(output_args) diff --git a/packages/climate-ref-esmvaltool/tests/unit/test_provider.py b/packages/climate-ref-esmvaltool/tests/unit/test_provider.py index 0f46fe838..b9063637a 100644 --- a/packages/climate-ref-esmvaltool/tests/unit/test_provider.py +++ b/packages/climate-ref-esmvaltool/tests/unit/test_provider.py @@ -14,6 +14,7 @@ def test_provider(): "base.py": 0, "cloud_scatterplots.py": 5, "enso.py": 2, + "regional_historical_changes.py": 3, } n_diagnostics = sum(diagnostics_per_module.get(f.name, 1) for f in diagnostic_modules) assert len(provider) == n_diagnostics diff --git a/packages/climate-ref/tests/unit/datasets/test_obs4mips/obs4mips_catalog_db.yml b/packages/climate-ref/tests/unit/datasets/test_obs4mips/obs4mips_catalog_db.yml index a00c1c720..0f5979847 100644 --- a/packages/climate-ref/tests/unit/datasets/test_obs4mips/obs4mips_catalog_db.yml +++ b/packages/climate-ref/tests/unit/datasets/test_obs4mips/obs4mips_catalog_db.yml @@ -146,25 +146,2440 @@ variable_id: ts variant_label: PCMDI vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1980-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198001-198012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1980-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1981-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198101-198112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1981-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1982-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198201-198212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1982-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1983-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198301-198312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1983-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1984-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198401-198412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1984-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1985-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198501-198512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1985-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1986-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198601-198612.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1986-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1987-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198701-198712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1987-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1988-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198801-198812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1988-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1989-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_198901-198912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1989-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1990-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199001-199012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1990-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1991-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199101-199112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1991-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1992-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199201-199212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1992-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1993-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199301-199312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1993-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1994-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199401-199412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1994-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1995-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199501-199512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1995-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1996-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199601-199612.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1996-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1997-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199701-199712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1997-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1998-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199801-199812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1998-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1999-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_199901-199912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1999-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2000-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200001-200012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2000-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2001-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200101-200112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2001-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2002-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200201-200212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2002-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2003-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200301-200312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2003-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2004-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200401-200412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2004-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2005-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200501-200512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2005-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2006-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200601-200612.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2006-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2007-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200701-200712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2007-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2008-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200801-200812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2008-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2009-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_200901-200912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2009-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2010-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_201001-201012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2010-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2011-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_201101-201112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2011-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2012-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_201201-201212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2012-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2013-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_201301-201312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2013-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2014-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.psl.gn.v20250220 + institution_id: ECMWF + long_name: Sea Level Pressure + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/psl/gn/v20250220/psl_ERA-5_gn_201401-201412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2014-01-16 12:00:00 + units: Pa + variable_id: psl + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2007-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_200701-200712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2007-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2007-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ta/gn/v20250220/ta_ERA-5_gn_200701-200712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2007-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2008-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_200801-200812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2008-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2008-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ta/gn/v20250220/ta_ERA-5_gn_200801-200812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2008-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2009-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_200901-200912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2009-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2009-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ta/gn/v20250220/ta_ERA-5_gn_200901-200912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2009-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2010-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201001-201012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2010-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2010-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ta/gn/v20250220/ta_ERA-5_gn_201001-201012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2010-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2011-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201101-201112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2011-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2011-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ta/gn/v20250220/ta_ERA-5_gn_201101-201112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2011-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2012-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201201-201212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2012-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2012-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ta/gn/v20250220/ta_ERA-5_gn_201201-201212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2012-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2013-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201301-201312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2013-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2013-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ta/gn/v20250220/ta_ERA-5_gn_201301-201312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2013-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2014-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201401-201412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2014-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2014-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ta/gn/v20250220/ta_ERA-5_gn_201401-201412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2014-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2015-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201501-201512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2015-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2015-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + institution_id: ECMWF + long_name: Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ta/gn/v20250220/ta_ERA-5_gn_201501-201512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2015-01-16 12:00:00 + units: K + variable_id: ta + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1980-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198001-198012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1980-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1981-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198101-198112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1981-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1982-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198201-198212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1982-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1983-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198301-198312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1983-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1984-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198401-198412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1984-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1985-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198501-198512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1985-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1986-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198601-198612.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1986-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1987-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198701-198712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1987-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1988-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198801-198812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1988-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1989-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_198901-198912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1989-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1990-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199001-199012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1990-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1991-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199101-199112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1991-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1992-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199201-199212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1992-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1993-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199301-199312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1993-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1994-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199401-199412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1994-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1995-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199501-199512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1995-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1996-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199601-199612.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1996-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1997-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199701-199712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1997-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1998-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199801-199812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1998-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1999-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_199901-199912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1999-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2000-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200001-200012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2000-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2001-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200101-200112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2001-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2002-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200201-200212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2002-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2003-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200301-200312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2003-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2004-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200401-200412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2004-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2005-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200501-200512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2005-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2006-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200601-200612.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2006-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2007-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200701-200712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2007-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2008-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200801-200812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2008-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2009-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_200901-200912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2009-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2010-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_201001-201012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2010-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2011-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_201101-201112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2011-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2012-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_201201-201212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2012-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2013-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_201301-201312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2013-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 2014-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.tas.gn.v20250220 + institution_id: ECMWF + long_name: Near-Surface Air Temperature + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/tas/gn/v20250220/tas_ERA-5_gn_201401-201412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2014-01-16 12:00:00 + units: K + variable_id: tas + variant_label: PCMDI + vertical_levels: 1 +- activity_id: obs4MIPs + end_time: 1980-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198001-198012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1980-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1981-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198101-198112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1981-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1982-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198201-198212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1982-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1983-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198301-198312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1983-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1984-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198401-198412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1984-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1985-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198501-198512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1985-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1986-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198601-198612.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1986-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1987-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198701-198712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1987-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1988-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198801-198812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1988-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1989-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_198901-198912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1989-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1990-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199001-199012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1990-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1991-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199101-199112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1991-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1992-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199201-199212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1992-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1993-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199301-199312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1993-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1994-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199401-199412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1994-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1995-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199501-199512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1995-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1996-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199601-199612.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1996-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1997-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199701-199712.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1997-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1998-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199801-199812.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1998-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 1999-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_199901-199912.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 1999-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2000-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200001-200012.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2000-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2001-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200101-200112.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2001-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2002-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200201-200212.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2002-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2003-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200301-200312.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2003-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2004-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200401-200412.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2004-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2005-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200501-200512.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2005-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 +- activity_id: obs4MIPs + end_time: 2006-12-16 12:00:00 + finalised: true + frequency: mon + grid: 0.25x 0.25 degree latitude x longitude + grid_label: gn + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 + institution_id: ECMWF + long_name: Eastward Wind + nominal_resolution: 25 km + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200601-200612.nc' + product: reanalysis + realm: atmos + source_id: ERA-5 + source_type: reanalysis + source_version_number: v20250220 + start_time: 2006-01-16 12:00:00 + units: m s-1 + variable_id: ua + variant_label: PCMDI + vertical_levels: 37 - activity_id: obs4MIPs end_time: 2007-12-16 12:00:00 finalised: true frequency: mon grid: 0.25x 0.25 degree latitude x longitude grid_label: gn - instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 institution_id: ECMWF - long_name: Air Temperature + long_name: Eastward Wind nominal_resolution: 25 km - path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_200701-200712.nc' + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200701-200712.nc' product: reanalysis realm: atmos source_id: ERA-5 source_type: reanalysis source_version_number: v20250220 start_time: 2007-01-16 12:00:00 - units: K - variable_id: ta + units: m s-1 + variable_id: ua variant_label: PCMDI vertical_levels: 37 - activity_id: obs4MIPs @@ -173,19 +2588,19 @@ frequency: mon grid: 0.25x 0.25 degree latitude x longitude grid_label: gn - instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 institution_id: ECMWF - long_name: Air Temperature + long_name: Eastward Wind nominal_resolution: 25 km - path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_200801-200812.nc' + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200801-200812.nc' product: reanalysis realm: atmos source_id: ERA-5 source_type: reanalysis source_version_number: v20250220 start_time: 2008-01-16 12:00:00 - units: K - variable_id: ta + units: m s-1 + variable_id: ua variant_label: PCMDI vertical_levels: 37 - activity_id: obs4MIPs @@ -194,19 +2609,19 @@ frequency: mon grid: 0.25x 0.25 degree latitude x longitude grid_label: gn - instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 institution_id: ECMWF - long_name: Air Temperature + long_name: Eastward Wind nominal_resolution: 25 km - path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_200901-200912.nc' + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_200901-200912.nc' product: reanalysis realm: atmos source_id: ERA-5 source_type: reanalysis source_version_number: v20250220 start_time: 2009-01-16 12:00:00 - units: K - variable_id: ta + units: m s-1 + variable_id: ua variant_label: PCMDI vertical_levels: 37 - activity_id: obs4MIPs @@ -215,19 +2630,19 @@ frequency: mon grid: 0.25x 0.25 degree latitude x longitude grid_label: gn - instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 institution_id: ECMWF - long_name: Air Temperature + long_name: Eastward Wind nominal_resolution: 25 km - path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201001-201012.nc' + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_201001-201012.nc' product: reanalysis realm: atmos source_id: ERA-5 source_type: reanalysis source_version_number: v20250220 start_time: 2010-01-16 12:00:00 - units: K - variable_id: ta + units: m s-1 + variable_id: ua variant_label: PCMDI vertical_levels: 37 - activity_id: obs4MIPs @@ -236,19 +2651,19 @@ frequency: mon grid: 0.25x 0.25 degree latitude x longitude grid_label: gn - instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 institution_id: ECMWF - long_name: Air Temperature + long_name: Eastward Wind nominal_resolution: 25 km - path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201101-201112.nc' + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_201101-201112.nc' product: reanalysis realm: atmos source_id: ERA-5 source_type: reanalysis source_version_number: v20250220 start_time: 2011-01-16 12:00:00 - units: K - variable_id: ta + units: m s-1 + variable_id: ua variant_label: PCMDI vertical_levels: 37 - activity_id: obs4MIPs @@ -257,19 +2672,19 @@ frequency: mon grid: 0.25x 0.25 degree latitude x longitude grid_label: gn - instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 institution_id: ECMWF - long_name: Air Temperature + long_name: Eastward Wind nominal_resolution: 25 km - path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201201-201212.nc' + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_201201-201212.nc' product: reanalysis realm: atmos source_id: ERA-5 source_type: reanalysis source_version_number: v20250220 start_time: 2012-01-16 12:00:00 - units: K - variable_id: ta + units: m s-1 + variable_id: ua variant_label: PCMDI vertical_levels: 37 - activity_id: obs4MIPs @@ -278,19 +2693,19 @@ frequency: mon grid: 0.25x 0.25 degree latitude x longitude grid_label: gn - instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 institution_id: ECMWF - long_name: Air Temperature + long_name: Eastward Wind nominal_resolution: 25 km - path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201301-201312.nc' + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_201301-201312.nc' product: reanalysis realm: atmos source_id: ERA-5 source_type: reanalysis source_version_number: v20250220 start_time: 2013-01-16 12:00:00 - units: K - variable_id: ta + units: m s-1 + variable_id: ua variant_label: PCMDI vertical_levels: 37 - activity_id: obs4MIPs @@ -299,40 +2714,19 @@ frequency: mon grid: 0.25x 0.25 degree latitude x longitude grid_label: gn - instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 + instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ua.gn.v20250220 institution_id: ECMWF - long_name: Air Temperature + long_name: Eastward Wind nominal_resolution: 25 km - path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201401-201412.nc' + path: '{esgf_data_dir}/obs4MIPs/ECMWF/ERA-5/ua/gn/v20250220/ua_ERA-5_gn_201401-201412.nc' product: reanalysis realm: atmos source_id: ERA-5 source_type: reanalysis source_version_number: v20250220 start_time: 2014-01-16 12:00:00 - units: K - variable_id: ta - variant_label: PCMDI - vertical_levels: 37 -- activity_id: obs4MIPs - end_time: 2015-12-16 12:00:00 - finalised: true - frequency: mon - grid: 0.25x 0.25 degree latitude x longitude - grid_label: gn - instance_id: obs4MIPs.obs4MIPs.ECMWF.ERA-5.ta.gn.v20250220 - institution_id: ECMWF - long_name: Air Temperature - nominal_resolution: 25 km - path: '{esgf_data_dir}/obs4REF/obs4REF/ECMWF/ERA-5/mon/ta/gn/v20250220/ta_mon_ERA-5_PCMDI_gn_201501-201512.nc' - product: reanalysis - realm: atmos - source_id: ERA-5 - source_type: reanalysis - source_version_number: v20250220 - start_time: 2015-01-16 12:00:00 - units: K - variable_id: ta + units: m s-1 + variable_id: ua variant_label: PCMDI vertical_levels: 37 - activity_id: obs4MIPs diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/config/config.yml b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/config/config.yml index ded86a5a7..8d294fb82 100644 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/config/config.yml +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/config/config.yml @@ -9,7 +9,7 @@ rootpath: CMIP6: /climate_data OBS: /home/bandela/.cache/climate_ref/ESMValTool/OBS OBS6: /home/bandela/.cache/climate_ref/ESMValTool/OBS - native6: /home/bandela/.cache/climate_ref/ESMValTool/RAWOBS + native6: /home/bandela/.cache/climate_ref/ESMValTool/native6 obs4MIPs: - /climate_data - /home/bandela/.cache/climate_ref/ESMValTool diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/main_log.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/main_log.txt deleted file mode 100644 index eadddc5a0..000000000 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/main_log.txt +++ /dev/null @@ -1,96 +0,0 @@ -INFO [88088] -______________________________________________________________________ - _____ ____ __ ____ __ _ _____ _ - | ____/ ___|| \/ \ \ / /_ _| |_ _|__ ___ | | - | _| \___ \| |\/| |\ \ / / _` | | | |/ _ \ / _ \| | - | |___ ___) | | | | \ V / (_| | | | | (_) | (_) | | - |_____|____/|_| |_| \_/ \__,_|_| |_|\___/ \___/|_| -______________________________________________________________________ - -Earth System Model Evaluation Tool - -A community tool for the evaluation of Earth system models. - -https://esmvaltool.org - -The Earth System Model Evaluation Tool (ESMValTool) is a community -diagnostics and performance metrics tool for the evaluation of Earth -System Models (ESMs) that allows for routine comparison of single or -multiple models, either against predecessor versions or against -observations. - -Tutorial: https://tutorial.esmvaltool.org -Documentation: https://docs.esmvaltool.org -Contact: esmvaltool-dev@listserv.dfn.de - -If you find this software useful for your research, please cite it using -https://doi.org/10.5281/zenodo.3387139 for ESMValCore or -https://doi.org/10.5281/zenodo.3401363 for ESMValTool or -any of the reference papers listed at https://esmvaltool.org/references/. - -Have fun! - -INFO [88088] Package versions -INFO [88088] ---------------- -INFO [88088] ESMValCore: 2.12.0 -INFO [88088] ESMValTool: 2.13.0.dev120+g8f56863a7 -INFO [88088] ---------------- -INFO [88088] Reading configuration files from: -/home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmvalcore/config/configurations/defaults (defaults) -/home/bandela/.config/esmvaltool (default user configuration directory) -/config (command line argument) -INFO [88088] Writing program log files to: -/executions/recipe_20250827_110101/run/main_log.txt -/executions/recipe_20250827_110101/run/main_log_debug.txt -/executions/recipe_20250827_110101/run/cmor_log.txt -WARNING [88088] /home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 - warnings.warn("ESMF installation version {}, ESMPy version {}".format( - -INFO [88088] Starting the Earth System Model Evaluation Tool at time: 2025-08-27 11:01:01 UTC -INFO [88088] ---------------------------------------------------------------------- -INFO [88088] RECIPE = /recipe.yml -INFO [88088] RUNDIR = /executions/recipe_20250827_110101/run -INFO [88088] WORKDIR = /executions/recipe_20250827_110101/work -INFO [88088] PREPROCDIR = /executions/recipe_20250827_110101/preproc -INFO [88088] PLOTDIR = /executions/recipe_20250827_110101/plots -INFO [88088] ---------------------------------------------------------------------- -INFO [88088] Running tasks using at most 1 processes -INFO [88088] If your system hangs during execution, it may not have enough memory for keeping this number of tasks in memory. -INFO [88088] If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. -INFO [88088] Creating tasks from recipe -INFO [88088] Creating tasks for diagnostic timeseries -INFO [88088] Creating diagnostic task timeseries/script1 -INFO [88088] Creating preprocessor task timeseries/tas -INFO [88088] Creating preprocessor 'annual_mean_global' task for variable 'tas' -INFO [88088] Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, C4MIP CDRMIP, esm-1pct-brch-1000PgC, r1i1p1f1, gn, v20191206, supplementaries: areacella, fx -INFO [88088] PreprocessingTask timeseries/tas created. -INFO [88088] These tasks will be executed: timeseries/script1, timeseries/tas -INFO [88088] Wrote recipe with version numbers and wildcards to: -file:///executions/recipe_20250827_110101/run/recipe_filled.yml -INFO [88088] Using Dask threaded scheduler. The distributed scheduler is recommended, please read https://docs.esmvaltool.org/projects/ESMValCore/en/latest/quickstart/configure.html#dask-configuration how to use a distributed scheduler. -INFO [88088] Running 2 tasks sequentially -INFO [88088] Starting task timeseries/tas in process [88088] -INFO [88088] Computing and saving data for preprocessing task timeseries/tas -INFO [88088] Successfully completed task timeseries/tas (priority 1) in 0:00:00.390466 -INFO [88088] Starting task timeseries/script1 in process [88088] -INFO [88088] Running command ['/home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/bin/python', '/home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmvaltool/diag_scripts/examples/diagnostic.py', '/executions/recipe_20250827_110101/run/timeseries/script1/settings.yml'] -INFO [88088] Writing output to /executions/recipe_20250827_110101/work/timeseries/script1 -INFO [88088] Writing plots to /executions/recipe_20250827_110101/plots/timeseries/script1 -INFO [88088] Writing log to /executions/recipe_20250827_110101/run/timeseries/script1/log.txt -INFO [88088] To re-run this diagnostic script, run: -cd /executions/recipe_20250827_110101/run/timeseries/script1; MPLBACKEND="Agg" /home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/bin/python /home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmvaltool/diag_scripts/examples/diagnostic.py /executions/recipe_20250827_110101/run/timeseries/script1/settings.yml -INFO [88088] Maximum memory used (estimate): 0.4 GB -INFO [88088] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. -WARNING [88088] Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC -INFO [88088] Successfully completed task timeseries/script1 (priority 0) in 0:00:03.231142 -INFO [88088] Wrote recipe with version numbers and wildcards to: -file:///executions/recipe_20250827_110101/run/recipe_filled.yml -INFO [88088] Wrote recipe output to: -file:///executions/recipe_20250827_110101/index.html -INFO [88088] Ending the Earth System Model Evaluation Tool at time: 2025-08-27 11:01:04 UTC -INFO [88088] Time for running the recipe was: 0:00:03.682012 -INFO [88088] Maximum memory used (estimate): 0.8 GB -INFO [88088] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. -INFO [88088] Removing `preproc` directory containing preprocessed data -INFO [88088] If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration -INFO [88088] Run was successful diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/resource_usage.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/resource_usage.txt deleted file mode 100644 index a24b728f9..000000000 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/resource_usage.txt +++ /dev/null @@ -1,4 +0,0 @@ -Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) -2025-08-27 11:01:02.039871 1.0 6.2 0 0.5 4 0.003 0.0 -2025-08-27 11:01:03.045562 2.0 7.2 1 0.8 5 0.003 0.0 -2025-08-27 11:01:04.056589 3.0 7.2 1 0.4 3 0.003 0.0 diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/settings.yml b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/settings.yml deleted file mode 100644 index 26921d669..000000000 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/settings.yml +++ /dev/null @@ -1,17 +0,0 @@ -quickplot: - plot_type: plot -recipe: recipe.yml -version: 2.12.0 -script: script1 -run_dir: /executions/recipe_20250827_110101/run/timeseries/script1 -plot_dir: /executions/recipe_20250827_110101/plots/timeseries/script1 -work_dir: /executions/recipe_20250827_110101/work/timeseries/script1 -output_file_type: png -log_level: info -auxiliary_data_dir: /home/bandela/auxiliary_data -themes: -- phys -realms: -- atmos -input_files: -- /executions/recipe_20250827_110101/preproc/timeseries/tas/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/index.html b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/index.html similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/index.html rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/index.html diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_citation.bibtex b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_citation.bibtex similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_citation.bibtex rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_citation.bibtex diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_data_citation_info.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_data_citation_info.txt similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_data_citation_info.txt rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_data_citation_info.txt diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml similarity index 92% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml index 51509881a..d3c6266e6 100644 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml @@ -1,71 +1,6 @@ - - - - - - - - CF-1.7 CMIP-6.2 - C4MIP CDRMIP - standard - 24471.0 - 24471.0 - 3.4.0 - 2019-12-05T22:55:09Z - 01.00.30 - zero emissions simulation branched from 1% run after 1000 PgC cumulative emission - esm-1pct-brch-1000PgC - areacella - 1 - mon - https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.none.r1i1p1f1 - native atmosphere N96 grid (145x192 latxlon) - gn - 2019-12-05T22:55:09Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. - 1 - Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia - CSIRO - CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. - CMIP6 - 250 km - Exp: ESM-esm-1pct-brch-1000PgC; Local ID: PI-EDC-ZEC-01; Variable: tas (['fld_s03i236']) - CMIP - 1pctCO2 - CMIP6 - ACCESS-ESM1-5 - days since 0101-01-01 - r1i1p1f1 - 1 - model-output - 1 - atmos - forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) - ACCESS-ESM1.5 (2019): -aerosol: CLASSIC (v1.0) -atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) -atmosChem: none -land: CABLE2.4 -landIce: none -ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) -ocnBgchem: WOMBAT (same grid as ocean) -seaIce: CICE4.1 (same grid as ocean) - ACCESS-ESM1-5 - AOGCM BGC - none - none - Amon - Creation Date:(30 April 2019) MD5:40e9ef53d4d2ec9daef980b76f23d39a - ACCESS-ESM1-5 output prepared for CMIP6 - hdl:21.14100/a0a30848-5810-467b-822a-1a11fa994e15 - tas - r1i1p1f1 - v20191206 - - - - - + + CF-1.7 CMIP-6.2 C4MIP CDRMIP @@ -122,49 +57,44 @@ seaIce: CICE4.1 (same grid as ocean) r1i1p1f1 v20191206 + + + + + - - - - - + - - - - - - - Example recipe that plots a map and timeseries of temperature. - - ['acknow_project'] - - - + Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5. ('global',) ('zonal mean',) {'plot_type': 'plot'} ('atmosphere',) ['acknow_project'] + tcp://127.0.0.1:33605 script1 examples/diagnostic.py ('mean',) ('physics',) - - - mattia.righi@dlr.de - DLR, Germany - https://orcid.org/0000-0003-3827-5950 - - - - + + + + + + + + + + + + + - + C4MIP CDRMIP ACCESS-ESM1-5 Annual global mean {long_name} according to {dataset}. @@ -173,7 +103,7 @@ seaIce: CICE4.1 (same grid as ocean) 268 r1i1p1f1 esm-1pct-brch-1000PgC - /executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc + /executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc mon gn CSIRO @@ -195,37 +125,108 @@ seaIce: CICE4.1 (same grid as ocean) {'operator': 'mean'} {'units': 'degrees_C'} {} - {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc')} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc')} + + + + + + + + mattia.righi@dlr.de + DLR, Germany + https://orcid.org/0000-0003-3827-5950 + + + + + + + CF-1.7 CMIP-6.2 + C4MIP CDRMIP + standard + 24471.0 + 24471.0 + 3.4.0 + 2019-12-05T22:55:09Z + 01.00.30 + zero emissions simulation branched from 1% run after 1000 PgC cumulative emission + esm-1pct-brch-1000PgC + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-12-05T22:55:09Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-esm-1pct-brch-1000PgC; Local ID: PI-EDC-ZEC-01; Variable: tas (['fld_s03i236']) + CMIP + 1pctCO2 + CMIP6 + ACCESS-ESM1-5 + days since 0101-01-01 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM BGC + none + none + Amon + Creation Date:(30 April 2019) MD5:40e9ef53d4d2ec9daef980b76f23d39a + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/a0a30848-5810-467b-822a-1a11fa994e15 + tas + r1i1p1f1 + v20191206 + + + + + b.andela@esciencecenter.nl bouweandela NLeSC, Netherlands https://orcid.org/0000-0001-9005-8940 + + + + Example recipe that plots a map and timeseries of temperature. + + ['acknow_project'] + + + + + - - - - - - - - - - + - - - - - - - diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/cmor_log.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/cmor_log.txt similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/cmor_log.txt rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/cmor_log.txt diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/main_log.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/main_log.txt new file mode 100644 index 000000000..e9376a414 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/main_log.txt @@ -0,0 +1,96 @@ +INFO [126567] +______________________________________________________________________ + _____ ____ __ ____ __ _ _____ _ + | ____/ ___|| \/ \ \ / /_ _| |_ _|__ ___ | | + | _| \___ \| |\/| |\ \ / / _` | | | |/ _ \ / _ \| | + | |___ ___) | | | | \ V / (_| | | | | (_) | (_) | | + |_____|____/|_| |_| \_/ \__,_|_| |_|\___/ \___/|_| +______________________________________________________________________ + +Earth System Model Evaluation Tool + +A community tool for the evaluation of Earth system models. + +https://esmvaltool.org + +The Earth System Model Evaluation Tool (ESMValTool) is a community +diagnostics and performance metrics tool for the evaluation of Earth +System Models (ESMs) that allows for routine comparison of single or +multiple models, either against predecessor versions or against +observations. + +Tutorial: https://tutorial.esmvaltool.org +Documentation: https://docs.esmvaltool.org +Contact: esmvaltool-dev@listserv.dfn.de + +If you find this software useful for your research, please cite it using +https://doi.org/10.5281/zenodo.3387139 for ESMValCore or +https://doi.org/10.5281/zenodo.3401363 for ESMValTool or +any of the reference papers listed at https://esmvaltool.org/references/. + +Have fun! + +INFO [126567] Package versions +INFO [126567] ---------------- +INFO [126567] ESMValCore: 2.12.0 +INFO [126567] ESMValTool: 2.13.0.dev148+g2c438d0e0 +INFO [126567] ---------------- +INFO [126567] Reading configuration files from: +/home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config/configurations/defaults (defaults) +/home/bandela/.config/esmvaltool (default user configuration directory) +/config (command line argument) +INFO [126567] Writing program log files to: +/executions/recipe_20250908_112900/run/main_log.txt +/executions/recipe_20250908_112900/run/main_log_debug.txt +/executions/recipe_20250908_112900/run/cmor_log.txt +WARNING [126567] /home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 + warnings.warn("ESMF installation version {}, ESMPy version {}".format( + +INFO [126567] Starting the Earth System Model Evaluation Tool at time: 2025-09-08 11:29:00 UTC +INFO [126567] ---------------------------------------------------------------------- +INFO [126567] RECIPE = /recipe.yml +INFO [126567] RUNDIR = /executions/recipe_20250908_112900/run +INFO [126567] WORKDIR = /executions/recipe_20250908_112900/work +INFO [126567] PREPROCDIR = /executions/recipe_20250908_112900/preproc +INFO [126567] PLOTDIR = /executions/recipe_20250908_112900/plots +INFO [126567] ---------------------------------------------------------------------- +INFO [126567] Running tasks using at most 1 processes +INFO [126567] If your system hangs during execution, it may not have enough memory for keeping this number of tasks in memory. +INFO [126567] If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. +INFO [126567] Creating tasks from recipe +INFO [126567] Creating tasks for diagnostic timeseries +INFO [126567] Creating diagnostic task timeseries/script1 +INFO [126567] Creating preprocessor task timeseries/tas +INFO [126567] Creating preprocessor 'annual_mean_global' task for variable 'tas' +INFO [126567] Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, C4MIP CDRMIP, esm-1pct-brch-1000PgC, r1i1p1f1, gn, v20191206, supplementaries: areacella, fx +INFO [126567] PreprocessingTask timeseries/tas created. +INFO [126567] These tasks will be executed: timeseries/tas, timeseries/script1 +INFO [126567] Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250908_112900/run/recipe_filled.yml +INFO [126567] Using Dask distributed scheduler (address: tcp://127.0.0.1:33605, dashboard link: http://127.0.0.1:8787/status) +INFO [126567] Running 2 tasks sequentially +INFO [126567] Starting task timeseries/tas in process [126567] +INFO [126567] Computing and saving data for preprocessing task timeseries/tas +INFO [126567] Successfully completed task timeseries/tas (priority 1) in 0:00:01.189958 +INFO [126567] Starting task timeseries/script1 in process [126567] +INFO [126567] Running command ['/home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/examples/diagnostic.py', '/executions/recipe_20250908_112900/run/timeseries/script1/settings.yml'] +INFO [126567] Writing output to /executions/recipe_20250908_112900/work/timeseries/script1 +INFO [126567] Writing plots to /executions/recipe_20250908_112900/plots/timeseries/script1 +INFO [126567] Writing log to /executions/recipe_20250908_112900/run/timeseries/script1/log.txt +INFO [126567] To re-run this diagnostic script, run: +cd /executions/recipe_20250908_112900/run/timeseries/script1; MPLBACKEND="Agg" /home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/examples/diagnostic.py /executions/recipe_20250908_112900/run/timeseries/script1/settings.yml +INFO [126567] Maximum memory used (estimate): 0.4 GB +INFO [126567] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +WARNING [126567] Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC +INFO [126567] Successfully completed task timeseries/script1 (priority 0) in 0:00:03.217511 +INFO [126567] Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250908_112900/run/recipe_filled.yml +INFO [126567] Wrote recipe output to: +file:///executions/recipe_20250908_112900/index.html +INFO [126567] Ending the Earth System Model Evaluation Tool at time: 2025-09-08 11:29:05 UTC +INFO [126567] Time for running the recipe was: 0:00:05.534732 +INFO [126567] Maximum memory used (estimate): 1.4 GB +INFO [126567] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +INFO [126567] Removing `preproc` directory containing preprocessed data +INFO [126567] If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration +INFO [126567] Run was successful diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/main_log_debug.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/main_log_debug.txt similarity index 62% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/main_log_debug.txt rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/main_log_debug.txt index 6e777ae43..23678d37d 100644 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/main_log_debug.txt +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/main_log_debug.txt @@ -1,4 +1,4 @@ -2025-08-27 11:01:01,033 UTC [88088] INFO esmvalcore._main:576 +2025-09-08 11:29:00,054 UTC [126567] INFO esmvalcore._main:576 ______________________________________________________________________ _____ ____ __ ____ __ _ _____ _ | ____/ ___|| \/ \ \ / /_ _| |_ _|__ ___ | | @@ -30,79 +30,79 @@ any of the reference papers listed at https://esmvaltool.org/references/. Have fun! -2025-08-27 11:01:01,033 UTC [88088] INFO esmvalcore._main:577 Package versions -2025-08-27 11:01:01,033 UTC [88088] INFO esmvalcore._main:578 ---------------- -2025-08-27 11:01:01,033 UTC [88088] INFO esmvalcore._main:579 ESMValCore: 2.12.0 -2025-08-27 11:01:01,033 UTC [88088] INFO esmvalcore._main:581 ESMValTool: 2.13.0.dev120+g8f56863a7 -2025-08-27 11:01:01,033 UTC [88088] INFO esmvalcore._main:582 ---------------- -2025-08-27 11:01:01,033 UTC [88088] INFO esmvalcore._main:583 Reading configuration files from: -/home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmvalcore/config/configurations/defaults (defaults) +2025-09-08 11:29:00,054 UTC [126567] INFO esmvalcore._main:577 Package versions +2025-09-08 11:29:00,054 UTC [126567] INFO esmvalcore._main:578 ---------------- +2025-09-08 11:29:00,054 UTC [126567] INFO esmvalcore._main:579 ESMValCore: 2.12.0 +2025-09-08 11:29:00,054 UTC [126567] INFO esmvalcore._main:581 ESMValTool: 2.13.0.dev148+g2c438d0e0 +2025-09-08 11:29:00,054 UTC [126567] INFO esmvalcore._main:582 ---------------- +2025-09-08 11:29:00,054 UTC [126567] INFO esmvalcore._main:583 Reading configuration files from: +/home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config/configurations/defaults (defaults) /home/bandela/.config/esmvaltool (default user configuration directory) /config (command line argument) -2025-08-27 11:01:01,033 UTC [88088] INFO esmvalcore._main:587 Writing program log files to: -/executions/recipe_20250827_110101/run/main_log.txt -/executions/recipe_20250827_110101/run/main_log_debug.txt -/executions/recipe_20250827_110101/run/cmor_log.txt -2025-08-27 11:01:01,141 UTC [88088] WARNING py.warnings:109 /home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 +2025-09-08 11:29:00,054 UTC [126567] INFO esmvalcore._main:587 Writing program log files to: +/executions/recipe_20250908_112900/run/main_log.txt +/executions/recipe_20250908_112900/run/main_log_debug.txt +/executions/recipe_20250908_112900/run/cmor_log.txt +2025-09-08 11:29:00,192 UTC [126567] WARNING py.warnings:109 /home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 warnings.warn("ESMF installation version {}, ESMPy version {}".format( -2025-08-27 11:01:01,171 UTC [88088] INFO esmvalcore._main:93 Starting the Earth System Model Evaluation Tool at time: 2025-08-27 11:01:01 UTC -2025-08-27 11:01:01,171 UTC [88088] INFO esmvalcore._main:98 ---------------------------------------------------------------------- -2025-08-27 11:01:01,171 UTC [88088] INFO esmvalcore._main:99 RECIPE = /recipe.yml -2025-08-27 11:01:01,171 UTC [88088] INFO esmvalcore._main:100 RUNDIR = /executions/recipe_20250827_110101/run -2025-08-27 11:01:01,171 UTC [88088] INFO esmvalcore._main:101 WORKDIR = /executions/recipe_20250827_110101/work -2025-08-27 11:01:01,171 UTC [88088] INFO esmvalcore._main:102 PREPROCDIR = /executions/recipe_20250827_110101/preproc -2025-08-27 11:01:01,172 UTC [88088] INFO esmvalcore._main:103 PLOTDIR = /executions/recipe_20250827_110101/plots -2025-08-27 11:01:01,172 UTC [88088] INFO esmvalcore._main:104 ---------------------------------------------------------------------- -2025-08-27 11:01:01,172 UTC [88088] INFO esmvalcore._main:107 Running tasks using at most 1 processes -2025-08-27 11:01:01,172 UTC [88088] INFO esmvalcore._main:109 If your system hangs during execution, it may not have enough memory for keeping this number of tasks in memory. -2025-08-27 11:01:01,172 UTC [88088] INFO esmvalcore._main:113 If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. -2025-08-27 11:01:01,172 UTC [88088] DEBUG esmvalcore._recipe.check:67 Checking recipe against schema /home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmvalcore/_recipe/recipe_schema.yml -2025-08-27 11:01:01,178 UTC [88088] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable tas in diagnostic timeseries -2025-08-27 11:01:01,179 UTC [88088] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_*_*_gn*.nc')] -2025-08-27 11:01:01,179 UTC [88088] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, C4MIP CDRMIP, esm-1pct-brch-1000PgC, r1i1p1f1, gn, supplementaries: areacella, fx -2025-08-27 11:01:01,179 UTC [88088] DEBUG esmvalcore._recipe.recipe:879 Retrieving diagnostics from recipe -2025-08-27 11:01:01,179 UTC [88088] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic timeseries -2025-08-27 11:01:01,180 UTC [88088] INFO esmvalcore._recipe.recipe:1119 Creating tasks from recipe -2025-08-27 11:01:01,180 UTC [88088] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic timeseries -2025-08-27 11:01:01,180 UTC [88088] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task timeseries/script1 -2025-08-27 11:01:01,180 UTC [88088] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. -2025-08-27 11:01:01,180 UTC [88088] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task timeseries/tas -2025-08-27 11:01:01,180 UTC [88088] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'annual_mean_global' task for variable 'tas' -2025-08-27 11:01:01,182 UTC [88088] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/*/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn*.nc')] -2025-08-27 11:01:01,183 UTC [88088] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn*.nc')] -2025-08-27 11:01:01,183 UTC [88088] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset ACCESS-ESM1-5: +2025-09-08 11:29:00,222 UTC [126567] INFO esmvalcore._main:93 Starting the Earth System Model Evaluation Tool at time: 2025-09-08 11:29:00 UTC +2025-09-08 11:29:00,222 UTC [126567] INFO esmvalcore._main:98 ---------------------------------------------------------------------- +2025-09-08 11:29:00,222 UTC [126567] INFO esmvalcore._main:99 RECIPE = /recipe.yml +2025-09-08 11:29:00,222 UTC [126567] INFO esmvalcore._main:100 RUNDIR = /executions/recipe_20250908_112900/run +2025-09-08 11:29:00,222 UTC [126567] INFO esmvalcore._main:101 WORKDIR = /executions/recipe_20250908_112900/work +2025-09-08 11:29:00,222 UTC [126567] INFO esmvalcore._main:102 PREPROCDIR = /executions/recipe_20250908_112900/preproc +2025-09-08 11:29:00,222 UTC [126567] INFO esmvalcore._main:103 PLOTDIR = /executions/recipe_20250908_112900/plots +2025-09-08 11:29:00,222 UTC [126567] INFO esmvalcore._main:104 ---------------------------------------------------------------------- +2025-09-08 11:29:00,222 UTC [126567] INFO esmvalcore._main:107 Running tasks using at most 1 processes +2025-09-08 11:29:00,223 UTC [126567] INFO esmvalcore._main:109 If your system hangs during execution, it may not have enough memory for keeping this number of tasks in memory. +2025-09-08 11:29:00,223 UTC [126567] INFO esmvalcore._main:113 If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. +2025-09-08 11:29:00,223 UTC [126567] DEBUG esmvalcore._recipe.check:67 Checking recipe against schema /home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/_recipe/recipe_schema.yml +2025-09-08 11:29:00,229 UTC [126567] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable tas in diagnostic timeseries +2025-09-08 11:29:00,230 UTC [126567] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-08 11:29:00,231 UTC [126567] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, C4MIP CDRMIP, esm-1pct-brch-1000PgC, r1i1p1f1, gn, supplementaries: areacella, fx +2025-09-08 11:29:00,231 UTC [126567] DEBUG esmvalcore._recipe.recipe:879 Retrieving diagnostics from recipe +2025-09-08 11:29:00,231 UTC [126567] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic timeseries +2025-09-08 11:29:00,231 UTC [126567] INFO esmvalcore._recipe.recipe:1119 Creating tasks from recipe +2025-09-08 11:29:00,231 UTC [126567] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic timeseries +2025-09-08 11:29:00,231 UTC [126567] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task timeseries/script1 +2025-09-08 11:29:00,231 UTC [126567] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. +2025-09-08 11:29:00,231 UTC [126567] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task timeseries/tas +2025-09-08 11:29:00,231 UTC [126567] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'annual_mean_global' task for variable 'tas' +2025-09-08 11:29:00,233 UTC [126567] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/*/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn*.nc')] +2025-09-08 11:29:00,234 UTC [126567] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn*.nc')] +2025-09-08 11:29:00,234 UTC [126567] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset ACCESS-ESM1-5: /climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc with files for supplementary variable areacella: /climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc -2025-08-27 11:01:01,183 UTC [88088] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, C4MIP CDRMIP, esm-1pct-brch-1000PgC, r1i1p1f1, gn, v20191206, supplementaries: areacella, fx -2025-08-27 11:01:01,184 UTC [88088] INFO esmvalcore._recipe.recipe:766 PreprocessingTask timeseries/tas created. -2025-08-27 11:01:01,184 UTC [88088] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask timeseries/tas will create the files: -/executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc -2025-08-27 11:01:01,184 UTC [88088] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic timeseries script script1 -2025-08-27 11:01:01,184 UTC [88088] DEBUG esmvalcore._recipe.recipe:975 Pattern timeseries/tas matches ['timeseries/tas'] -2025-08-27 11:01:01,184 UTC [88088] INFO esmvalcore._recipe.recipe:1171 These tasks will be executed: timeseries/script1, timeseries/tas -2025-08-27 11:01:01,184 UTC [88088] DEBUG esmvalcore._main:133 Recipe summary: +2025-09-08 11:29:00,234 UTC [126567] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, C4MIP CDRMIP, esm-1pct-brch-1000PgC, r1i1p1f1, gn, v20191206, supplementaries: areacella, fx +2025-09-08 11:29:00,235 UTC [126567] INFO esmvalcore._recipe.recipe:766 PreprocessingTask timeseries/tas created. +2025-09-08 11:29:00,235 UTC [126567] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask timeseries/tas will create the files: +/executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc +2025-09-08 11:29:00,235 UTC [126567] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic timeseries script script1 +2025-09-08 11:29:00,235 UTC [126567] DEBUG esmvalcore._recipe.recipe:975 Pattern timeseries/tas matches ['timeseries/tas'] +2025-09-08 11:29:00,235 UTC [126567] INFO esmvalcore._recipe.recipe:1171 These tasks will be executed: timeseries/tas, timeseries/script1 +2025-09-08 11:29:00,235 UTC [126567] DEBUG esmvalcore._main:133 Recipe summary: DiagnosticTask: timeseries/script1 script: examples/diagnostic.py settings: {'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), 'log_level': 'info', 'output_file_type': 'png', - 'plot_dir': '/executions/recipe_20250827_110101/plots/timeseries/script1', + 'plot_dir': '/executions/recipe_20250908_112900/plots/timeseries/script1', 'profile_diagnostic': False, 'quickplot': {'plot_type': 'plot'}, 'realms': ['atmos'], 'recipe': PosixPath('recipe.yml'), - 'run_dir': '/executions/recipe_20250827_110101/run/timeseries/script1', + 'run_dir': '/executions/recipe_20250908_112900/run/timeseries/script1', 'script': 'script1', 'themes': ['phys'], 'version': '2.12.0', - 'work_dir': '/executions/recipe_20250827_110101/work/timeseries/script1'} + 'work_dir': '/executions/recipe_20250908_112900/work/timeseries/script1'} ancestors: PreprocessingTask: timeseries/tas order: ['area_statistics', 'annual_statistics', 'convert_units', 'remove_supplementary_variables', 'save'] - PreprocessorFile: /executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc + PreprocessorFile: /executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc input files: [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc'), LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] settings: {'annual_statistics': {'operator': 'mean'}, @@ -111,27 +111,30 @@ ancestors: 'remove_supplementary_variables': {}, 'save': {'compress': False, 'compute': False, - 'filename': PosixPath('/executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc')}} + 'filename': PosixPath('/executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc')}} ancestors: None -2025-08-27 11:01:01,186 UTC [88088] INFO esmvalcore._recipe.recipe:1238 Wrote recipe with version numbers and wildcards to: -file:///executions/recipe_20250827_110101/run/recipe_filled.yml -2025-08-27 11:01:01,186 UTC [88088] DEBUG esmvalcore.config._dask:170 Using Dask profile 'threaded' -2025-08-27 11:01:01,186 UTC [88088] DEBUG esmvalcore.config._dask:174 Using additional Dask settings {'num_workers': 4} -2025-08-27 11:01:01,186 UTC [88088] INFO esmvalcore.config._dask:196 Using Dask threaded scheduler. The distributed scheduler is recommended, please read https://docs.esmvaltool.org/projects/ESMValCore/en/latest/quickstart/configure.html#dask-configuration how to use a distributed scheduler. -2025-08-27 11:01:01,186 UTC [88088] INFO esmvalcore._task:844 Running 2 tasks sequentially -2025-08-27 11:01:01,186 UTC [88088] INFO esmvalcore._task:289 Starting task timeseries/tas in process [88088] -2025-08-27 11:01:01,210 UTC [88088] DEBUG esmvalcore.preprocessor:716 Running block ['area_statistics', 'annual_statistics', 'convert_units'] -2025-08-27 11:01:01,210 UTC [88088] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc -2025-08-27 11:01:01,210 UTC [88088] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. -2025-08-27 11:01:01,210 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file -2025-08-27 11:01:01,210 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +2025-09-08 11:29:00,237 UTC [126567] INFO esmvalcore._recipe.recipe:1238 Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250908_112900/run/recipe_filled.yml +2025-09-08 11:29:00,237 UTC [126567] DEBUG esmvalcore.config._dask:170 Using Dask profile 'local_distributed' +2025-09-08 11:29:00,237 UTC [126567] DEBUG esmvalcore.config._dask:174 Using additional Dask settings {} +2025-09-08 11:29:00,238 UTC [126567] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 11:29:01,040 UTC [126567] DEBUG esmvalcore.config._dask:192 Using Dask cluster LocalCluster(4c356c98, 'tcp://127.0.0.1:33605', workers=2, threads=4, memory=8.00 GiB) +2025-09-08 11:29:01,043 UTC [126567] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 11:29:01,054 UTC [126567] INFO esmvalcore.config._dask:205 Using Dask distributed scheduler (address: tcp://127.0.0.1:33605, dashboard link: http://127.0.0.1:8787/status) +2025-09-08 11:29:01,054 UTC [126567] INFO esmvalcore._task:844 Running 2 tasks sequentially +2025-09-08 11:29:01,054 UTC [126567] INFO esmvalcore._task:289 Starting task timeseries/tas in process [126567] +2025-09-08 11:29:01,064 UTC [126567] DEBUG esmvalcore.preprocessor:716 Running block ['area_statistics', 'annual_statistics', 'convert_units'] +2025-09-08 11:29:01,064 UTC [126567] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc +2025-09-08 11:29:01,064 UTC [126567] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 11:29:01,064 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 11:29:01,065 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc') loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc')] with function argument(s) -output_dir = PosixPath('/executions/recipe_20250827_110101/preproc/fixed_files/tas_Amon_CMIP6_ACCESS-ESM1-5_C4MIP CDRMIP_esm-1pct-brch-1000PgC_r1i1p1f1_gn_v20191206_'), +output_dir = PosixPath('/executions/recipe_20250908_112900/preproc/fixed_files/tas_Amon_CMIP6_ACCESS-ESM1-5_C4MIP CDRMIP_esm-1pct-brch-1000PgC_r1i1p1f1_gn_v20191206_'), add_unique_suffix = True, session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), 'check_level': , @@ -144,7 +147,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'type': 'distributed.LocalCluster'}}, 'local_threaded': {'scheduler': 'threads'}, 'threaded': {'num_workers': 4}}, - 'use': 'threaded'}, + 'use': 'local_distributed'}, 'diagnostics': None, 'download_dir': PosixPath('/home/bandela/climate_data'), 'drs': {'CMIP3': 'ESGF', @@ -171,7 +174,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'default': [PosixPath('/home/bandela/climate_data')], - 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/native6')], 'obs4MIPs': [PosixPath('/climate_data'), PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, 'run_diagnostic': True, @@ -202,18 +205,18 @@ units = 'K', modeling_realm = ['atmos'], frequency = 'mon', version = 'v20191206' -2025-08-27 11:01:01,211 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load -2025-08-27 11:01:01,211 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +2025-09-08 11:29:01,068 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 11:29:01,068 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc') loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc')] with function argument(s) ignore_warnings = None -2025-08-27 11:01:01,211 UTC [88088] DEBUG esmvalcore.preprocessor._io:103 Loading: +2025-09-08 11:29:01,068 UTC [126567] DEBUG esmvalcore.preprocessor._io:103 Loading: /climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc -2025-08-27 11:01:01,226 UTC [88088] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc -2025-08-27 11:01:01,226 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata -2025-08-27 11:01:01,228 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +2025-09-08 11:29:01,086 UTC [126567] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc +2025-09-08 11:29:01,086 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 11:29:01,089 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data [] loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc')] @@ -229,7 +232,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'type': 'distributed.LocalCluster'}}, 'local_threaded': {'scheduler': 'threads'}, 'threaded': {'num_workers': 4}}, - 'use': 'threaded'}, + 'use': 'local_distributed'}, 'diagnostics': None, 'download_dir': PosixPath('/home/bandela/climate_data'), 'drs': {'CMIP3': 'ESGF', @@ -256,7 +259,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'default': [PosixPath('/home/bandela/climate_data')], - 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/native6')], 'obs4MIPs': [PosixPath('/climate_data'), PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, 'run_diagnostic': True, @@ -287,15 +290,15 @@ units = 'K', modeling_realm = ['atmos'], frequency = 'mon', version = 'v20191206' -2025-08-27 11:01:01,241 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate -2025-08-27 11:01:01,242 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +2025-09-08 11:29:01,102 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 11:29:01,103 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data [] loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc')] with function argument(s) check_level = -2025-08-27 11:01:01,242 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata -2025-08-27 11:01:01,243 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data +2025-09-08 11:29:01,103 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 11:29:01,104 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc')] @@ -305,15 +308,15 @@ cmor_table = 'CMIP6', mip = 'Amon', frequency = 'mon', short_name = 'tas' -2025-08-27 11:01:01,245 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange -2025-08-27 11:01:01,245 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data +2025-09-08 11:29:01,106 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 11:29:01,106 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc')] with function argument(s) timerange = '01680116T120000/02681216T120000' -2025-08-27 11:01:01,250 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data -2025-08-27 11:01:01,251 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data +2025-09-08 11:29:01,111 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 11:29:01,112 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc')] @@ -329,7 +332,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'type': 'distributed.LocalCluster'}}, 'local_threaded': {'scheduler': 'threads'}, 'threaded': {'num_workers': 4}}, - 'use': 'threaded'}, + 'use': 'local_distributed'}, 'diagnostics': None, 'download_dir': PosixPath('/home/bandela/climate_data'), 'drs': {'CMIP3': 'ESGF', @@ -356,7 +359,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'default': [PosixPath('/home/bandela/climate_data')], - 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/native6')], 'obs4MIPs': [PosixPath('/climate_data'), PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, 'run_diagnostic': True, @@ -387,8 +390,8 @@ units = 'K', modeling_realm = ['atmos'], frequency = 'mon', version = 'v20191206' -2025-08-27 11:01:01,251 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data -2025-08-27 11:01:01,251 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data +2025-09-08 11:29:01,112 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 11:29:01,112 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc')] @@ -398,13 +401,13 @@ cmor_table = 'CMIP6', mip = 'Amon', frequency = 'mon', short_name = 'tas' -2025-08-27 11:01:01,251 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file -2025-08-27 11:01:01,252 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +2025-09-08 11:29:01,112 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 11:29:01,113 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc') loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] with function argument(s) -output_dir = PosixPath('/executions/recipe_20250827_110101/preproc/fixed_files/areacella_fx_CMIP6_ACCESS-ESM1-5_C4MIP CDRMIP_esm-1pct-brch-1000PgC_r1i1p1f1_gn_v20191206_'), +output_dir = PosixPath('/executions/recipe_20250908_112900/preproc/fixed_files/areacella_fx_CMIP6_ACCESS-ESM1-5_C4MIP CDRMIP_esm-1pct-brch-1000PgC_r1i1p1f1_gn_v20191206_'), add_unique_suffix = True, session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), 'check_level': , @@ -417,7 +420,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'type': 'distributed.LocalCluster'}}, 'local_threaded': {'scheduler': 'threads'}, 'threaded': {'num_workers': 4}}, - 'use': 'threaded'}, + 'use': 'local_distributed'}, 'diagnostics': None, 'download_dir': PosixPath('/home/bandela/climate_data'), 'drs': {'CMIP3': 'ESGF', @@ -444,7 +447,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'default': [PosixPath('/home/bandela/climate_data')], - 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/native6')], 'obs4MIPs': [PosixPath('/climate_data'), PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, 'run_diagnostic': True, @@ -469,18 +472,18 @@ units = 'm2', modeling_realm = ['atmos', 'land'], frequency = 'fx', version = 'v20191206' -2025-08-27 11:01:01,252 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load -2025-08-27 11:01:01,252 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +2025-09-08 11:29:01,113 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 11:29:01,113 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc') loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] with function argument(s) ignore_warnings = None -2025-08-27 11:01:01,252 UTC [88088] DEBUG esmvalcore.preprocessor._io:103 Loading: +2025-09-08 11:29:01,113 UTC [126567] DEBUG esmvalcore.preprocessor._io:103 Loading: /climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc -2025-08-27 11:01:01,256 UTC [88088] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc -2025-08-27 11:01:01,256 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata -2025-08-27 11:01:01,257 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +2025-09-08 11:29:01,118 UTC [126567] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc +2025-09-08 11:29:01,118 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 11:29:01,118 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data [] loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] @@ -496,7 +499,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'type': 'distributed.LocalCluster'}}, 'local_threaded': {'scheduler': 'threads'}, 'threaded': {'num_workers': 4}}, - 'use': 'threaded'}, + 'use': 'local_distributed'}, 'diagnostics': None, 'download_dir': PosixPath('/home/bandela/climate_data'), 'drs': {'CMIP3': 'ESGF', @@ -523,7 +526,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'default': [PosixPath('/home/bandela/climate_data')], - 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/native6')], 'obs4MIPs': [PosixPath('/climate_data'), PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, 'run_diagnostic': True, @@ -548,15 +551,15 @@ units = 'm2', modeling_realm = ['atmos', 'land'], frequency = 'fx', version = 'v20191206' -2025-08-27 11:01:01,257 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate -2025-08-27 11:01:01,258 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +2025-09-08 11:29:01,118 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 11:29:01,119 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data [] loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] with function argument(s) check_level = -2025-08-27 11:01:01,258 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata -2025-08-27 11:01:01,258 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data +2025-09-08 11:29:01,119 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 11:29:01,119 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] @@ -566,8 +569,8 @@ cmor_table = 'CMIP6', mip = 'fx', frequency = 'fx', short_name = 'areacella' -2025-08-27 11:01:01,258 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data -2025-08-27 11:01:01,259 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data +2025-09-08 11:29:01,119 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 11:29:01,120 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] @@ -583,7 +586,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'type': 'distributed.LocalCluster'}}, 'local_threaded': {'scheduler': 'threads'}, 'threaded': {'num_workers': 4}}, - 'use': 'threaded'}, + 'use': 'local_distributed'}, 'diagnostics': None, 'download_dir': PosixPath('/home/bandela/climate_data'), 'drs': {'CMIP3': 'ESGF', @@ -610,7 +613,7 @@ session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data 'OBS': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'OBS6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/OBS')], 'default': [PosixPath('/home/bandela/climate_data')], - 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/RAWOBS')], + 'native6': [PosixPath('/home/bandela/.cache/climate_ref/ESMValTool/native6')], 'obs4MIPs': [PosixPath('/climate_data'), PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, 'run_diagnostic': True, @@ -635,8 +638,8 @@ units = 'm2', modeling_realm = ['atmos', 'land'], frequency = 'fx', version = 'v20191206' -2025-08-27 11:01:01,259 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data -2025-08-27 11:01:01,259 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data +2025-09-08 11:29:01,120 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 11:29:01,120 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] @@ -646,41 +649,41 @@ cmor_table = 'CMIP6', mip = 'fx', frequency = 'fx', short_name = 'areacella' -2025-08-27 11:01:01,259 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables -2025-08-27 11:01:01,260 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data +2025-09-08 11:29:01,120 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 11:29:01,121 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc'), LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] with function argument(s) supplementary_cubes = [] -2025-08-27 11:01:01,260 UTC [88088] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. -2025-08-27 11:01:01,260 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics -2025-08-27 11:01:01,261 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data +2025-09-08 11:29:01,121 UTC [126567] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. +2025-09-08 11:29:01,121 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 11:29:01,122 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc'), LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] with function argument(s) operator = 'mean' -2025-08-27 11:01:01,268 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics -2025-08-27 11:01:01,268 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_statistics' on the data +2025-09-08 11:29:01,130 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-09-08 11:29:01,130 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_statistics' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc'), LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] with function argument(s) operator = 'mean' -2025-08-27 11:01:01,366 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units -2025-08-27 11:01:01,367 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data +2025-09-08 11:29:01,228 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 11:29:01,229 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc'), LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/fx/areacella/gn/v20191206/areacella_fx_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn.nc')] with function argument(s) units = 'degrees_C' -2025-08-27 11:01:01,367 UTC [88088] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save -2025-08-27 11:01:01,368 UTC [88088] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +2025-09-08 11:29:01,230 UTC [126567] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 11:29:01,230 UTC [126567] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data [] loaded from original input file(s) [LocalFile('/climate_data/CMIP6/C4MIP CDRMIP/CSIRO/ACCESS-ESM1-5/esm-1pct-brch-1000PgC/r1i1p1f1/Amon/tas/gn/v20191206/tas_Amon_ACCESS-ESM1-5_esm-1pct-brch-1000PgC_r1i1p1f1_gn_016801-026812.nc'), @@ -688,8 +691,8 @@ loaded from original input file(s) with function argument(s) compress = False, compute = False, -filename = PosixPath('/executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc') -2025-08-27 11:01:01,368 UTC [88088] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +filename = PosixPath('/executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc') +2025-09-08 11:29:01,231 UTC [126567] DEBUG esmvalcore.preprocessor._io:497 Saving cube: air_temperature / (degrees_C) (time: 101) Dimension coordinates: time x @@ -748,43 +751,44 @@ air_temperature / (degrees_C) (time: 101) variable_id 'tas' variant_label 'r1i1p1f1' version 'v20191206' -with lazy data to /executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc -2025-08-27 11:01:01,469 UTC [88088] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task timeseries/tas -2025-08-27 11:01:01,577 UTC [88088] INFO esmvalcore._task:295 Successfully completed task timeseries/tas (priority 1) in 0:00:00.390466 -2025-08-27 11:01:01,577 UTC [88088] INFO esmvalcore._task:289 Starting task timeseries/script1 in process [88088] -2025-08-27 11:01:01,578 UTC [88088] INFO esmvalcore._task:564 Running command ['/home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/bin/python', '/home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmvaltool/diag_scripts/examples/diagnostic.py', '/executions/recipe_20250827_110101/run/timeseries/script1/settings.yml'] -2025-08-27 11:01:01,579 UTC [88088] DEBUG esmvalcore._task:565 in environment +with lazy data to /executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc +2025-09-08 11:29:01,287 UTC [126567] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task timeseries/tas +2025-09-08 11:29:01,298 UTC [126567] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 11:29:02,244 UTC [126567] INFO esmvalcore._task:295 Successfully completed task timeseries/tas (priority 1) in 0:00:01.189958 +2025-09-08 11:29:02,244 UTC [126567] INFO esmvalcore._task:289 Starting task timeseries/script1 in process [126567] +2025-09-08 11:29:02,246 UTC [126567] INFO esmvalcore._task:564 Running command ['/home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/examples/diagnostic.py', '/executions/recipe_20250908_112900/run/timeseries/script1/settings.yml'] +2025-09-08 11:29:02,247 UTC [126567] DEBUG esmvalcore._task:565 in environment {'MPLBACKEND': 'Agg'} -2025-08-27 11:01:01,579 UTC [88088] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250827_110101/run/timeseries/script1 -2025-08-27 11:01:01,579 UTC [88088] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250827_110101/work/timeseries/script1 -2025-08-27 11:01:01,579 UTC [88088] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250827_110101/plots/timeseries/script1 -2025-08-27 11:01:01,579 UTC [88088] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250827_110101/run/timeseries/script1/log.txt -2025-08-27 11:01:01,579 UTC [88088] INFO esmvalcore._task:580 To re-run this diagnostic script, run: -cd /executions/recipe_20250827_110101/run/timeseries/script1; MPLBACKEND="Agg" /home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/bin/python /home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmvaltool/diag_scripts/examples/diagnostic.py /executions/recipe_20250827_110101/run/timeseries/script1/settings.yml -2025-08-27 11:01:04,611 UTC [88088] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.4 GB -2025-08-27 11:01:04,613 UTC [88088] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. -2025-08-27 11:01:04,614 UTC [88088] DEBUG esmvalcore._task:657 Script examples/diagnostic.py completed successfully -2025-08-27 11:01:04,614 UTC [88088] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250827_110101/run/timeseries/script1/diagnostic_provenance.yml -2025-08-27 11:01:04,636 UTC [88088] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 -2025-08-27 11:01:04,701 UTC [88088] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.C4MIP%20CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC HTTP/11" 302 301 -2025-08-27 11:01:04,720 UTC [88088] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.C4MIP%20CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC HTTP/11" 302 303 -2025-08-27 11:01:04,722 UTC [88088] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 -2025-08-27 11:01:04,785 UTC [88088] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.C4MIP%20CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC HTTP/11" 404 48 -2025-08-27 11:01:04,786 UTC [88088] WARNING esmvalcore._citation:162 Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC -2025-08-27 11:01:04,792 UTC [88088] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 -2025-08-27 11:01:04,792 UTC [88088] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 -2025-08-27 11:01:04,792 UTC [88088] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 -2025-08-27 11:01:04,792 UTC [88088] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 48498 -2025-08-27 11:01:04,808 UTC [88088] DEBUG esmvalcore._task:770 Collecting provenance of task timeseries/script1 took 0.2 seconds -2025-08-27 11:01:04,808 UTC [88088] INFO esmvalcore._task:295 Successfully completed task timeseries/script1 (priority 0) in 0:00:03.231142 -2025-08-27 11:01:04,808 UTC [88088] INFO esmvalcore._recipe.recipe:1201 Wrote recipe with version numbers and wildcards to: -file:///executions/recipe_20250827_110101/run/recipe_filled.yml -2025-08-27 11:01:04,853 UTC [88088] INFO esmvalcore.experimental.recipe_output:280 Wrote recipe output to: -file:///executions/recipe_20250827_110101/index.html -2025-08-27 11:01:04,853 UTC [88088] INFO esmvalcore._main:138 Ending the Earth System Model Evaluation Tool at time: 2025-08-27 11:01:04 UTC -2025-08-27 11:01:04,853 UTC [88088] INFO esmvalcore._main:142 Time for running the recipe was: 0:00:03.682012 -2025-08-27 11:01:05,056 UTC [88088] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.8 GB -2025-08-27 11:01:05,057 UTC [88088] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. -2025-08-27 11:01:05,058 UTC [88088] INFO esmvalcore._main:518 Removing `preproc` directory containing preprocessed data -2025-08-27 11:01:05,058 UTC [88088] INFO esmvalcore._main:521 If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration -2025-08-27 11:01:05,059 UTC [88088] INFO esmvalcore._main:496 Run was successful +2025-09-08 11:29:02,247 UTC [126567] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250908_112900/run/timeseries/script1 +2025-09-08 11:29:02,247 UTC [126567] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250908_112900/work/timeseries/script1 +2025-09-08 11:29:02,247 UTC [126567] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250908_112900/plots/timeseries/script1 +2025-09-08 11:29:02,247 UTC [126567] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250908_112900/run/timeseries/script1/log.txt +2025-09-08 11:29:02,247 UTC [126567] INFO esmvalcore._task:580 To re-run this diagnostic script, run: +cd /executions/recipe_20250908_112900/run/timeseries/script1; MPLBACKEND="Agg" /home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/examples/diagnostic.py /executions/recipe_20250908_112900/run/timeseries/script1/settings.yml +2025-09-08 11:29:05,278 UTC [126567] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.4 GB +2025-09-08 11:29:05,280 UTC [126567] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-08 11:29:05,281 UTC [126567] DEBUG esmvalcore._task:657 Script examples/diagnostic.py completed successfully +2025-09-08 11:29:05,281 UTC [126567] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250908_112900/run/timeseries/script1/diagnostic_provenance.yml +2025-09-08 11:29:05,294 UTC [126567] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-08 11:29:05,347 UTC [126567] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.C4MIP%20CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC HTTP/11" 302 301 +2025-09-08 11:29:05,361 UTC [126567] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.C4MIP%20CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC HTTP/11" 302 303 +2025-09-08 11:29:05,363 UTC [126567] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-08 11:29:05,428 UTC [126567] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.C4MIP%20CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC HTTP/11" 404 48 +2025-09-08 11:29:05,430 UTC [126567] WARNING esmvalcore._citation:162 Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC +2025-09-08 11:29:05,440 UTC [126567] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-09-08 11:29:05,440 UTC [126567] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-09-08 11:29:05,440 UTC [126567] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-09-08 11:29:05,440 UTC [126567] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 48498 +2025-09-08 11:29:05,462 UTC [126567] DEBUG esmvalcore._task:770 Collecting provenance of task timeseries/script1 took 0.2 seconds +2025-09-08 11:29:05,462 UTC [126567] INFO esmvalcore._task:295 Successfully completed task timeseries/script1 (priority 0) in 0:00:03.217511 +2025-09-08 11:29:05,673 UTC [126567] INFO esmvalcore._recipe.recipe:1201 Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250908_112900/run/recipe_filled.yml +2025-09-08 11:29:05,756 UTC [126567] INFO esmvalcore.experimental.recipe_output:280 Wrote recipe output to: +file:///executions/recipe_20250908_112900/index.html +2025-09-08 11:29:05,757 UTC [126567] INFO esmvalcore._main:138 Ending the Earth System Model Evaluation Tool at time: 2025-09-08 11:29:05 UTC +2025-09-08 11:29:05,757 UTC [126567] INFO esmvalcore._main:142 Time for running the recipe was: 0:00:05.534732 +2025-09-08 11:29:06,090 UTC [126567] INFO esmvalcore._task:141 Maximum memory used (estimate): 1.4 GB +2025-09-08 11:29:06,090 UTC [126567] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-08 11:29:06,091 UTC [126567] INFO esmvalcore._main:518 Removing `preproc` directory containing preprocessed data +2025-09-08 11:29:06,091 UTC [126567] INFO esmvalcore._main:521 If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration +2025-09-08 11:29:06,092 UTC [126567] INFO esmvalcore._main:496 Run was successful diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/recipe.yml b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/recipe.yml new file mode 100644 index 000000000..22ae894e9 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/recipe.yml @@ -0,0 +1,65 @@ +documentation: + description: 'Example recipe that plots a map and timeseries of temperature. + + ' + title: Recipe that runs an example diagnostic written in Python. + authors: + - andela_bouwe + - righi_mattia + maintainer: + - schlund_manuel + references: + - acknow_project + projects: + - esmval + - c3s-magic +datasets: [] +preprocessors: + to_degrees_c: + convert_units: + units: degrees_C + annual_mean_amsterdam: + extract_location: + location: Amsterdam + scheme: linear + annual_statistics: + operator: mean + multi_model_statistics: + statistics: + - mean + span: overlap + convert_units: + units: degrees_C + annual_mean_global: + area_statistics: + operator: mean + annual_statistics: + operator: mean + convert_units: + units: degrees_C +diagnostics: + timeseries: + description: Annual mean temperature in Amsterdam and global mean since 1850. + themes: + - phys + realms: + - atmos + variables: + tas: + additional_datasets: + - project: CMIP6 + activity: C4MIP CDRMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: esm-1pct-brch-1000PgC + grid: gn + mip: Amon + timerange: 01680116T120000/02681216T120000 + preprocessor: annual_mean_global + caption: Annual global mean {long_name} according to {dataset}. + scripts: + script1: + script: examples/diagnostic.py + quickplot: + plot_type: plot diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/recipe_filled.yml b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/recipe_filled.yml similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/recipe_filled.yml rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/recipe_filled.yml diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/resource_usage.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/resource_usage.txt new file mode 100644 index 000000000..d22b73272 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/resource_usage.txt @@ -0,0 +1,6 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-09-08 11:29:01.063212 1.0 4.6 0 0.7 5 0.032 0.0 +2025-09-08 11:29:02.068456 2.0 5.9 35 1.0 6 0.034 0.0 +2025-09-08 11:29:03.074189 3.0 7.1 10 1.2 8 0.041 0.0 +2025-09-08 11:29:04.079581 4.0 8.2 4 1.4 9 0.044 0.0 +2025-09-08 11:29:05.089976 5.0 8.5 9 1.0 6 0.055 0.0 diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/diagnostic_provenance.yml b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/diagnostic_provenance.yml similarity index 78% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/diagnostic_provenance.yml rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/diagnostic_provenance.yml index e6592fff8..31a9e56a9 100644 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/diagnostic_provenance.yml +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/diagnostic_provenance.yml @@ -1,6 +1,6 @@ -? /executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png +? /executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png : ancestors: - - /executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc + - /executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc authors: - andela_bouwe - righi_mattia @@ -13,9 +13,9 @@ - acknow_project statistics: - mean -? /executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc +? /executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc : ancestors: - - /executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc + - /executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc authors: - andela_bouwe - righi_mattia diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/log.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/log.txt similarity index 78% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/log.txt rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/log.txt index 67024eb3d..56a552804 100644 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/log.txt +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/log.txt @@ -1,9 +1,9 @@ -/home/bandela/climate_ref/software/conda/esmvaltool-f7abde84c4770f4c1d32f292e73d24022beaedb4/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 +/home/bandela/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 warnings.warn("ESMF installation version {}, ESMPy version {}".format( INFO:esmvaltool.diag_scripts.shared._base:Starting diagnostic script script1 with configuration: auxiliary_data_dir: /home/bandela/auxiliary_data input_data: - ? /executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc + ? /executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc : activity: C4MIP CDRMIP alias: ACCESS-ESM1-5 caption: Annual global mean {long_name} according to {dataset}. @@ -12,7 +12,7 @@ input_data: end_year: 268 ensemble: r1i1p1f1 exp: esm-1pct-brch-1000PgC - filename: /executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc + filename: /executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc frequency: mon grid: gn institute: CSIRO @@ -31,24 +31,25 @@ input_data: variable_group: tas version: v20191206 input_files: -- /executions/recipe_20250827_110101/preproc/timeseries/tas/metadata.yml +- /executions/recipe_20250908_112900/preproc/timeseries/tas/metadata.yml log_level: info output_file_type: png -plot_dir: /executions/recipe_20250827_110101/plots/timeseries/script1 +plot_dir: /executions/recipe_20250908_112900/plots/timeseries/script1 quickplot: plot_type: plot realms: - atmos recipe: recipe.yml -run_dir: /executions/recipe_20250827_110101/run/timeseries/script1 +run_dir: /executions/recipe_20250908_112900/run/timeseries/script1 +scheduler_address: tcp://127.0.0.1:33605 script: script1 themes: - phys version: 2.12.0 -work_dir: /executions/recipe_20250827_110101/work/timeseries/script1 +work_dir: /executions/recipe_20250908_112900/work/timeseries/script1 -INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250827_110101/work/timeseries/script1 -INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250827_110101/plots/timeseries/script1 +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_112900/work/timeseries/script1 +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_112900/plots/timeseries/script1 INFO:diagnostic:Example of how to select only CMIP5 temperature data: [] INFO:diagnostic:Example of how to sort this selection by dataset: @@ -62,7 +63,7 @@ INFO:diagnostic:Example of how to group and sort input data by variable groups f 'end_year': 268, 'ensemble': 'r1i1p1f1', 'exp': 'esm-1pct-brch-1000PgC', - 'filename': '/executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc', + 'filename': '/executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc', 'frequency': 'mon', 'grid': 'gn', 'institute': 'CSIRO', @@ -81,6 +82,6 @@ INFO:diagnostic:Example of how to group and sort input data by variable groups f 'version': 'v20191206'}]} INFO:diagnostic:Processing variable tas INFO:diagnostic:Processing dataset ACCESS-ESM1-5 -INFO:esmvaltool.diag_scripts.shared._base:Saving analysis results to /executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc -INFO:esmvaltool.diag_scripts.shared._base:Plotting analysis results to /executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png +INFO:esmvaltool.diag_scripts.shared._base:Saving analysis results to /executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc +INFO:esmvaltool.diag_scripts.shared._base:Plotting analysis results to /executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png INFO:esmvaltool.diag_scripts.shared._base:End of diagnostic script run. diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/resource_usage.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/resource_usage.txt similarity index 50% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/resource_usage.txt rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/resource_usage.txt index a94fbb5c6..8ede4b374 100644 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/run/timeseries/script1/resource_usage.txt +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/resource_usage.txt @@ -1,3 +1,3 @@ Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) -2025-08-27 11:01:02.605895 1.0 2.9 0 0.3 2 0.0 0.0 -2025-08-27 11:01:03.611400 2.0 3.9 98 0.4 3 0.0 0.0 +2025-09-08 11:29:03.266085 1.0 0.9 0 0.3 2 0.007 0.0 +2025-09-08 11:29:04.278789 2.0 1.9 91 0.4 3 0.011 0.0 diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/settings.yml b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/settings.yml new file mode 100644 index 000000000..b6f8a4416 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/run/timeseries/script1/settings.yml @@ -0,0 +1,18 @@ +quickplot: + plot_type: plot +recipe: recipe.yml +version: 2.12.0 +script: script1 +run_dir: /executions/recipe_20250908_112900/run/timeseries/script1 +plot_dir: /executions/recipe_20250908_112900/plots/timeseries/script1 +work_dir: /executions/recipe_20250908_112900/work/timeseries/script1 +output_file_type: png +log_level: info +auxiliary_data_dir: /home/bandela/auxiliary_data +themes: +- phys +realms: +- atmos +scheduler_address: tcp://127.0.0.1:33605 +input_files: +- /executions/recipe_20250908_112900/preproc/timeseries/tas/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_citation.bibtex b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_citation.bibtex similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_citation.bibtex rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_citation.bibtex diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_data_citation_info.txt b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_data_citation_info.txt similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_data_citation_info.txt rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_data_citation_info.txt diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml similarity index 92% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml rename to tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml index fc3b3ccab..070ddfdf4 100644 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000_provenance.xml @@ -1,67 +1,6 @@ - - - - - - - - CF-1.7 CMIP-6.2 - C4MIP CDRMIP - standard - 24471.0 - 24471.0 - 3.4.0 - 2019-12-05T22:55:09Z - 01.00.30 - zero emissions simulation branched from 1% run after 1000 PgC cumulative emission - esm-1pct-brch-1000PgC - areacella - 1 - mon - https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.none.r1i1p1f1 - native atmosphere N96 grid (145x192 latxlon) - gn - 2019-12-05T22:55:09Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. - 1 - Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia - CSIRO - CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. - CMIP6 - 250 km - Exp: ESM-esm-1pct-brch-1000PgC; Local ID: PI-EDC-ZEC-01; Variable: tas (['fld_s03i236']) - CMIP - 1pctCO2 - CMIP6 - ACCESS-ESM1-5 - days since 0101-01-01 - r1i1p1f1 - 1 - model-output - 1 - atmos - forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) - ACCESS-ESM1.5 (2019): -aerosol: CLASSIC (v1.0) -atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) -atmosChem: none -land: CABLE2.4 -landIce: none -ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) -ocnBgchem: WOMBAT (same grid as ocean) -seaIce: CICE4.1 (same grid as ocean) - ACCESS-ESM1-5 - AOGCM BGC - none - none - Amon - Creation Date:(30 April 2019) MD5:40e9ef53d4d2ec9daef980b76f23d39a - ACCESS-ESM1-5 output prepared for CMIP6 - hdl:21.14100/a0a30848-5810-467b-822a-1a11fa994e15 - tas - r1i1p1f1 - v20191206 - + + CF-1.7 CMIP-6.2 C4MIP CDRMIP @@ -120,42 +59,50 @@ seaIce: CICE4.1 (same grid as ocean) - - - - - + - - - - - - - Example recipe that plots a map and timeseries of temperature. - - ['acknow_project'] - - - - + Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5. ('global',) ('zonal mean',) {'plot_type': 'plot'} ('atmosphere',) ['acknow_project'] + tcp://127.0.0.1:33605 script1 examples/diagnostic.py ('mean',) ('physics',) - - mattia.righi@dlr.de - DLR, Germany - https://orcid.org/0000-0003-3827-5950 - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + C4MIP CDRMIP ACCESS-ESM1-5 Annual global mean {long_name} according to {dataset}. @@ -164,7 +111,7 @@ seaIce: CICE4.1 (same grid as ocean) 268 r1i1p1f1 esm-1pct-brch-1000PgC - /executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc + /executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc mon gn CSIRO @@ -186,46 +133,100 @@ seaIce: CICE4.1 (same grid as ocean) {'operator': 'mean'} {'units': 'degrees_C'} {} - {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250827_110101/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc')} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_112900/preproc/timeseries/tas/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc')} + + + + + + + mattia.righi@dlr.de + DLR, Germany + https://orcid.org/0000-0003-3827-5950 + + + CF-1.7 CMIP-6.2 + C4MIP CDRMIP + standard + 24471.0 + 24471.0 + 3.4.0 + 2019-12-05T22:55:09Z + 01.00.30 + zero emissions simulation branched from 1% run after 1000 PgC cumulative emission + esm-1pct-brch-1000PgC + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-12-05T22:55:09Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-esm-1pct-brch-1000PgC; Local ID: PI-EDC-ZEC-01; Variable: tas (['fld_s03i236']) + CMIP + 1pctCO2 + CMIP6 + ACCESS-ESM1-5 + days since 0101-01-01 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM BGC + none + none + Amon + Creation Date:(30 April 2019) MD5:40e9ef53d4d2ec9daef980b76f23d39a + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/a0a30848-5810-467b-822a-1a11fa994e15 + tas + r1i1p1f1 + v20191206 + + + + + + b.andela@esciencecenter.nl bouweandela NLeSC, Netherlands https://orcid.org/0000-0001-9005-8940 - - - - - - - - - - - - - - - - - - + + + + Example recipe that plots a map and timeseries of temperature. + + ['acknow_project'] + - + - - + - - - - - - diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/output.json b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/output.json index f06899a24..150b8cd67 100644 --- a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/output.json +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/output.json @@ -1,28 +1,28 @@ { - "index": "/executions/recipe_20250827_110101/index.html", + "index": "/executions/recipe_20250908_112900/index.html", "provenance": { "environment": {}, "modeldata": [], "obsdata": {}, - "log": "/executions/recipe_20250827_110101/run/main_log_debug.txt" + "log": "/executions/recipe_20250908_112900/run/main_log_debug.txt" }, "data": { - "executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc": { - "filename": "executions/recipe_20250827_110101/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc", + "executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc": { + "filename": "executions/recipe_20250908_112900/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.nc", "long_name": "Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5.", "description": "" } }, "plots": { - "executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png": { - "filename": "executions/recipe_20250827_110101/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png", + "executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png": { + "filename": "executions/recipe_20250908_112900/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_esm-1pct-brch-1000PgC_r1i1p1f1_tas_gn_01680116T120000-02681216T120000.png", "long_name": "Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5.", "description": "" } }, "html": { - "/executions/recipe_20250827_110101/index.html": { - "filename": "/executions/recipe_20250827_110101/index.html", + "/executions/recipe_20250908_112900/index.html": { + "filename": "/executions/recipe_20250908_112900/index.html", "long_name": "Results page", "description": "Page showing the executions of the ESMValTool run." } diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/series.json b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/series.json new file mode 100644 index 000000000..d8232e5cf --- /dev/null +++ b/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/series.json @@ -0,0 +1,223 @@ +[ + { + "dimensions": {}, + "values": [ + 16.491113662719727, + 16.387659072875977, + 16.4760684967041, + 16.624902725219727, + 16.648828506469727, + 16.4952335357666, + 16.62420082092285, + 16.3891544342041, + 16.51799964904785, + 16.44634437561035, + 16.2720890045166, + 16.27800941467285, + 16.3747501373291, + 16.4215030670166, + 16.39629554748535, + 16.46868324279785, + 16.2847843170166, + 16.43010902404785, + 16.50054359436035, + 16.4472599029541, + 16.466028213500977, + 16.380517959594727, + 16.429590225219727, + 16.41790199279785, + 16.163293838500977, + 16.322839736938477, + 16.4584903717041, + 16.280542373657227, + 16.36077308654785, + 16.4427433013916, + 16.5173282623291, + 16.427392959594727, + 16.412988662719727, + 16.6086368560791, + 16.57024574279785, + 16.45183753967285, + 16.513818740844727, + 16.4204044342041, + 16.2712345123291, + 16.3859806060791, + 16.3516788482666, + 16.220300674438477, + 16.3387393951416, + 16.3435001373291, + 16.3704776763916, + 16.43450355529785, + 16.43511390686035, + 16.3360538482666, + 16.4539737701416, + 16.4127140045166, + 16.401330947875977, + 16.311731338500977, + 16.343591690063477, + 16.5264835357666, + 16.425622940063477, + 16.3992862701416, + 16.56377601623535, + 16.38775062561035, + 16.3548526763916, + 16.5186710357666, + 16.604822158813477, + 16.6491641998291, + 16.58123207092285, + 16.470422744750977, + 16.39629554748535, + 16.39568519592285, + 16.456628799438477, + 16.23723793029785, + 16.228540420532227, + 16.33745765686035, + 16.40325355529785, + 16.5140323638916, + 16.58538246154785, + 16.38811683654785, + 16.35308265686035, + 16.386865615844727, + 16.48723793029785, + 16.36089515686035, + 16.18145179748535, + 16.257410049438477, + 16.352685928344727, + 16.410364151000977, + 16.4196720123291, + 16.48259925842285, + 16.57793617248535, + 16.66228675842285, + 16.5993595123291, + 16.48247718811035, + 16.1970157623291, + 16.3710880279541, + 16.3736515045166, + 16.3000431060791, + 16.22393226623535, + 16.287805557250977, + 16.24541664123535, + 16.141138076782227, + 16.1508731842041, + 16.2988224029541, + 16.3499698638916, + 16.3961124420166, + 16.25835609436035 + ], + "index": [ + "0168-07-02T00:00:00", + "0169-07-02T12:00:00", + "0170-07-02T12:00:00", + "0171-07-02T12:00:00", + "0172-07-02T00:00:00", + "0173-07-02T12:00:00", + "0174-07-02T12:00:00", + "0175-07-02T12:00:00", + "0176-07-02T00:00:00", + "0177-07-02T12:00:00", + "0178-07-02T12:00:00", + "0179-07-02T12:00:00", + "0180-07-02T00:00:00", + "0181-07-02T12:00:00", + "0182-07-02T12:00:00", + "0183-07-02T12:00:00", + "0184-07-02T00:00:00", + "0185-07-02T12:00:00", + "0186-07-02T12:00:00", + "0187-07-02T12:00:00", + "0188-07-02T00:00:00", + "0189-07-02T12:00:00", + "0190-07-02T12:00:00", + "0191-07-02T12:00:00", + "0192-07-02T00:00:00", + "0193-07-02T12:00:00", + "0194-07-02T12:00:00", + "0195-07-02T12:00:00", + "0196-07-02T00:00:00", + "0197-07-02T12:00:00", + "0198-07-02T12:00:00", + "0199-07-02T12:00:00", + "0200-07-02T12:00:00", + "0201-07-02T12:00:00", + "0202-07-02T12:00:00", + "0203-07-02T12:00:00", + "0204-07-02T00:00:00", + "0205-07-02T12:00:00", + "0206-07-02T12:00:00", + "0207-07-02T12:00:00", + "0208-07-02T00:00:00", + "0209-07-02T12:00:00", + "0210-07-02T12:00:00", + "0211-07-02T12:00:00", + "0212-07-02T00:00:00", + "0213-07-02T12:00:00", + "0214-07-02T12:00:00", + "0215-07-02T12:00:00", + "0216-07-02T00:00:00", + "0217-07-02T12:00:00", + "0218-07-02T12:00:00", + "0219-07-02T12:00:00", + "0220-07-02T00:00:00", + "0221-07-02T12:00:00", + "0222-07-02T12:00:00", + "0223-07-02T12:00:00", + "0224-07-02T00:00:00", + "0225-07-02T12:00:00", + "0226-07-02T12:00:00", + "0227-07-02T12:00:00", + "0228-07-02T00:00:00", + "0229-07-02T12:00:00", + "0230-07-02T12:00:00", + "0231-07-02T12:00:00", + "0232-07-02T00:00:00", + "0233-07-02T12:00:00", + "0234-07-02T12:00:00", + "0235-07-02T12:00:00", + "0236-07-02T00:00:00", + "0237-07-02T12:00:00", + "0238-07-02T12:00:00", + "0239-07-02T12:00:00", + "0240-07-02T00:00:00", + "0241-07-02T12:00:00", + "0242-07-02T12:00:00", + "0243-07-02T12:00:00", + "0244-07-02T00:00:00", + "0245-07-02T12:00:00", + "0246-07-02T12:00:00", + "0247-07-02T12:00:00", + "0248-07-02T00:00:00", + "0249-07-02T12:00:00", + "0250-07-02T12:00:00", + "0251-07-02T12:00:00", + "0252-07-02T00:00:00", + "0253-07-02T12:00:00", + "0254-07-02T12:00:00", + "0255-07-02T12:00:00", + "0256-07-02T00:00:00", + "0257-07-02T12:00:00", + "0258-07-02T12:00:00", + "0259-07-02T12:00:00", + "0260-07-02T00:00:00", + "0261-07-02T12:00:00", + "0262-07-02T12:00:00", + "0263-07-02T12:00:00", + "0264-07-02T00:00:00", + "0265-07-02T12:00:00", + "0266-07-02T12:00:00", + "0267-07-02T12:00:00", + "0268-07-02T00:00:00" + ], + "index_name": "time", + "attributes": { + "caption": "Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5.", + "values_name": "tas", + "index_name": "time", + "value_long_name": "Near-Surface Air Temperature", + "index_long_name": "time", + "value_standard_name": "air_temperature", + "index_standard_name": "time", + "value_units": "degrees_C", + "calendar": "proleptic_gregorian" + } + } +] \ No newline at end of file diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/config/config.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/config/config.yml new file mode 100644 index 000000000..fa0a08ea0 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/config/config.yml @@ -0,0 +1,16 @@ +drs: + CMIP6: ESGF + OBS: default + OBS6: default + native6: default + obs4MIPs: ESGF +output_dir: /executions +rootpath: + CMIP6: /climate_data + OBS: /home/b/b381141/.cache/climate_ref/ESMValTool/OBS + OBS6: /home/b/b381141/.cache/climate_ref/ESMValTool/OBS + native6: /home/b/b381141/.cache/climate_ref/ESMValTool/native6 + obs4MIPs: + - /climate_data + - /home/b/b381141/.cache/climate_ref/ESMValTool +search_esgf: never diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/diagnostic.json b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/diagnostic.json new file mode 100644 index 000000000..320e4db42 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/diagnostic.json @@ -0,0 +1,790 @@ +{ + "DIMENSIONS": { + "json_structure": [ + "grid_label", + "member_id", + "source_id", + "variable_id", + "region", + "metric" + ], + "variable_id": { + "tas": {}, + "ua": {}, + "pr": {}, + "hus": {}, + "psl": {} + }, + "region": { + "ARP": {}, + "CAF": {}, + "CAR": {}, + "CAU": {}, + "CNA": {}, + "EAN": {}, + "EAS": {}, + "EAU": {}, + "ECA": {}, + "EEU": {}, + "ENA": {}, + "ESAF": {}, + "ESB": {}, + "GIC": {}, + "MDG": {}, + "MED": {}, + "NAU": {}, + "NCA": {}, + "NEAF": {}, + "NEN": {}, + "NES": {}, + "NEU": {}, + "NSA": {}, + "NWN": {}, + "NWS": {}, + "NZ": {}, + "RAR": {}, + "RFE": {}, + "SAH": {}, + "SAM": {}, + "SAS": {}, + "SAU": {}, + "SCA": {}, + "SEA": {}, + "SEAF": {}, + "SES": {}, + "SSA": {}, + "SWS": {}, + "TIB": {}, + "WAF": {}, + "WAN": {}, + "WCA": {}, + "WCE": {}, + "WNA": {}, + "WSAF": {}, + "WSB": {} + }, + "metric": { + "trend": {} + }, + "grid_label": { + "gn": {} + }, + "member_id": { + "r1i1p1f1": {} + }, + "source_id": { + "ACCESS-ESM1-5": {} + } + }, + "RESULTS": { + "gn": { + "r1i1p1f1": { + "ACCESS-ESM1-5": { + "tas": { + "ARP": { + "trend": 0.04179954156279564 + }, + "CAF": { + "trend": 0.025512561202049255 + }, + "CAR": { + "trend": 0.014045323245227337 + }, + "CAU": { + "trend": 0.00424751453101635 + }, + "CNA": { + "trend": 0.02848576009273529 + }, + "EAN": { + "trend": -0.0014069665921851993 + }, + "EAS": { + "trend": 0.03978120535612106 + }, + "EAU": { + "trend": -0.00583227863535285 + }, + "ECA": { + "trend": 0.05842512473464012 + }, + "EEU": { + "trend": 0.06459536403417587 + }, + "ENA": { + "trend": 0.02385597489774227 + }, + "ESAF": { + "trend": 0.009508577175438404 + }, + "ESB": { + "trend": 0.05375220626592636 + }, + "GIC": { + "trend": 0.06641422212123871 + }, + "MDG": { + "trend": 0.007978846319019794 + }, + "MED": { + "trend": 0.039858389645814896 + }, + "NAU": { + "trend": -0.017987003549933434 + }, + "NCA": { + "trend": 0.03294011950492859 + }, + "NEAF": { + "trend": 0.03744853660464287 + }, + "NEN": { + "trend": 0.08036154508590698 + }, + "NES": { + "trend": 0.025795970112085342 + }, + "NEU": { + "trend": 0.06348690390586853 + }, + "NSA": { + "trend": 0.020247353240847588 + }, + "NWN": { + "trend": 0.04862402379512787 + }, + "NWS": { + "trend": -0.01972341537475586 + }, + "NZ": { + "trend": 0.008197552524507046 + }, + "RAR": { + "trend": 0.06780095398426056 + }, + "RFE": { + "trend": 0.03181694820523262 + }, + "SAH": { + "trend": 0.047215625643730164 + }, + "SAM": { + "trend": 0.03221853822469711 + }, + "SAS": { + "trend": 0.00732515100389719 + }, + "SAU": { + "trend": 0.010095741599798203 + }, + "SCA": { + "trend": 0.018618807196617126 + }, + "SEA": { + "trend": 0.013076622039079666 + }, + "SEAF": { + "trend": 0.01648043654859066 + }, + "SES": { + "trend": 0.007214016746729612 + }, + "SSA": { + "trend": -0.0009256080957129598 + }, + "SWS": { + "trend": 0.009683885611593723 + }, + "TIB": { + "trend": 0.03150554746389389 + }, + "WAF": { + "trend": 0.010946121998131275 + }, + "WAN": { + "trend": 0.018954012542963028 + }, + "WCA": { + "trend": 0.045293573290109634 + }, + "WCE": { + "trend": 0.058432742953300476 + }, + "WNA": { + "trend": 0.03618478775024414 + }, + "WSAF": { + "trend": 0.005052026826888323 + }, + "WSB": { + "trend": 0.03867558762431145 + } + }, + "ua": { + "ARP": { + "trend": -0.07397740334272385 + }, + "CAF": { + "trend": -0.08415558934211731 + }, + "CAR": { + "trend": -0.059912096709012985 + }, + "CAU": { + "trend": 0.01713751070201397 + }, + "CNA": { + "trend": 0.01955369859933853 + }, + "EAN": { + "trend": 0.0029625531751662493 + }, + "EAS": { + "trend": -0.04627244919538498 + }, + "EAU": { + "trend": 0.022824039682745934 + }, + "ECA": { + "trend": -0.0036664896178990602 + }, + "EEU": { + "trend": -0.0026291231624782085 + }, + "ENA": { + "trend": 0.006415336858481169 + }, + "ESAF": { + "trend": -0.050990473479032516 + }, + "ESB": { + "trend": 0.05724576115608215 + }, + "GIC": { + "trend": -0.00801279116421938 + }, + "MDG": { + "trend": -0.059494972229003906 + }, + "MED": { + "trend": -0.00397799676284194 + }, + "NAU": { + "trend": -0.016379201784729958 + }, + "NCA": { + "trend": -0.03894536942243576 + }, + "NEAF": { + "trend": -0.08873207122087479 + }, + "NEN": { + "trend": -0.012002288363873959 + }, + "NES": { + "trend": -0.10995878279209137 + }, + "NEU": { + "trend": -0.01384115032851696 + }, + "NSA": { + "trend": -0.11236770451068878 + }, + "NWN": { + "trend": -0.028720969334244728 + }, + "NWS": { + "trend": -0.051223818212747574 + }, + "NZ": { + "trend": 0.0016371126985177398 + }, + "RAR": { + "trend": -0.016545502468943596 + }, + "RFE": { + "trend": 0.031058304011821747 + }, + "SAH": { + "trend": -0.05480305850505829 + }, + "SAM": { + "trend": -0.06932590156793594 + }, + "SAS": { + "trend": -0.08695831894874573 + }, + "SAU": { + "trend": 0.0015154780121520162 + }, + "SCA": { + "trend": -0.08230598270893097 + }, + "SEA": { + "trend": -0.09760422259569168 + }, + "SEAF": { + "trend": -0.07461092621088028 + }, + "SES": { + "trend": 0.10052017867565155 + }, + "SSA": { + "trend": -0.002305292757228017 + }, + "SWS": { + "trend": 0.04817941412329674 + }, + "TIB": { + "trend": -0.022316092625260353 + }, + "WAF": { + "trend": -0.08159209787845612 + }, + "WAN": { + "trend": 0.012055902741849422 + }, + "WCA": { + "trend": 0.00028705838485620916 + }, + "WCE": { + "trend": -0.012158297002315521 + }, + "WNA": { + "trend": 0.0015312903560698032 + }, + "WSAF": { + "trend": 0.005494304001331329 + }, + "WSB": { + "trend": 0.01649405248463154 + } + }, + "pr": { + "ARP": { + "trend": -3.3565425872802734 + }, + "CAF": { + "trend": 4.267765045166016 + }, + "CAR": { + "trend": -0.21939252316951752 + }, + "CAU": { + "trend": 0.12648700177669525 + }, + "CNA": { + "trend": 1.9345053434371948 + }, + "EAN": { + "trend": 0.041052188724279404 + }, + "EAS": { + "trend": -4.1985297203063965 + }, + "EAU": { + "trend": -7.203106880187988 + }, + "ECA": { + "trend": 2.0229742527008057 + }, + "EEU": { + "trend": 1.731143832206726 + }, + "ENA": { + "trend": -0.8116173148155212 + }, + "ESAF": { + "trend": -1.4585614204406738 + }, + "ESB": { + "trend": 2.383650064468384 + }, + "GIC": { + "trend": -2.9703245162963867 + }, + "MDG": { + "trend": -18.273771286010742 + }, + "MED": { + "trend": 1.8103957176208496 + }, + "NAU": { + "trend": 1.7990399599075317 + }, + "NCA": { + "trend": -3.8755910396575928 + }, + "NEAF": { + "trend": -0.6074315309524536 + }, + "NEN": { + "trend": 0.6009231209754944 + }, + "NES": { + "trend": -0.6495752930641174 + }, + "NEU": { + "trend": 1.541272759437561 + }, + "NSA": { + "trend": -2.1269288063049316 + }, + "NWN": { + "trend": -2.5709452629089355 + }, + "NWS": { + "trend": 6.202142715454102 + }, + "NZ": { + "trend": 3.2118544578552246 + }, + "RAR": { + "trend": 2.047851085662842 + }, + "RFE": { + "trend": 0.18695051968097687 + }, + "SAH": { + "trend": 0.5655907988548279 + }, + "SAM": { + "trend": -18.32416534423828 + }, + "SAS": { + "trend": 3.66611385345459 + }, + "SAU": { + "trend": -0.6175739765167236 + }, + "SCA": { + "trend": 1.1366477012634277 + }, + "SEA": { + "trend": 5.28931188583374 + }, + "SEAF": { + "trend": -6.336899757385254 + }, + "SES": { + "trend": -6.43507719039917 + }, + "SSA": { + "trend": 6.59224796295166 + }, + "SWS": { + "trend": -6.112598419189453 + }, + "TIB": { + "trend": -4.667553901672363 + }, + "WAF": { + "trend": 10.518279075622559 + }, + "WAN": { + "trend": -1.046612024307251 + }, + "WCA": { + "trend": -2.275073528289795 + }, + "WCE": { + "trend": 1.7073954343795776 + }, + "WNA": { + "trend": -6.0249505043029785 + }, + "WSAF": { + "trend": 4.90980863571167 + }, + "WSB": { + "trend": 4.811032295227051 + } + }, + "hus": { + "ARP": { + "trend": 1.0218030865871697e-7 + }, + "CAF": { + "trend": 6.784947004234709e-8 + }, + "CAR": { + "trend": 1.7315723255251214e-7 + }, + "CAU": { + "trend": 2.606304505547996e-8 + }, + "CNA": { + "trend": -2.4504347440057472e-9 + }, + "EAN": { + "trend": -1.0876490819100582e-8 + }, + "EAS": { + "trend": 2.95331332722526e-8 + }, + "EAU": { + "trend": 2.692576384077938e-9 + }, + "ECA": { + "trend": 3.733363840296988e-9 + }, + "EEU": { + "trend": -1.0791306515045562e-8 + }, + "ENA": { + "trend": 3.353621735868728e-8 + }, + "ESAF": { + "trend": 3.95246892992418e-8 + }, + "ESB": { + "trend": -1.7436398991321767e-8 + }, + "GIC": { + "trend": -1.6257123647278604e-8 + }, + "MDG": { + "trend": 4.0303753223724925e-8 + }, + "MED": { + "trend": -1.7594778967122693e-8 + }, + "NAU": { + "trend": 1.5534956787632836e-7 + }, + "NCA": { + "trend": 5.3602192906510027e-8 + }, + "NEAF": { + "trend": 9.277987800260235e-8 + }, + "NEN": { + "trend": -1.7454830469887384e-8 + }, + "NES": { + "trend": 4.943730758100173e-8 + }, + "NEU": { + "trend": -1.5095144689780682e-8 + }, + "NSA": { + "trend": 1.960817641588619e-8 + }, + "NWN": { + "trend": -2.1399065630589575e-8 + }, + "NWS": { + "trend": 7.04844760335277e-9 + }, + "NZ": { + "trend": -2.187128345099154e-8 + }, + "RAR": { + "trend": -3.2100757607622654e-8 + }, + "RFE": { + "trend": -1.5096031091843543e-8 + }, + "SAH": { + "trend": 9.22530318803183e-8 + }, + "SAM": { + "trend": 1.1144908995674996e-8 + }, + "SAS": { + "trend": 2.0601066808012547e-7 + }, + "SAU": { + "trend": -3.604921161581842e-8 + }, + "SCA": { + "trend": 1.2925224268656166e-7 + }, + "SEA": { + "trend": 1.6947046788118314e-7 + }, + "SEAF": { + "trend": 9.148280355475435e-8 + }, + "SES": { + "trend": -3.3504896634894976e-8 + }, + "SSA": { + "trend": -3.187608399457531e-8 + }, + "SWS": { + "trend": 9.936046652114783e-9 + }, + "TIB": { + "trend": 1.2318614039941167e-7 + }, + "WAF": { + "trend": 1.432375569265787e-7 + }, + "WAN": { + "trend": -1.528444393272821e-8 + }, + "WCA": { + "trend": -2.2916150754781484e-8 + }, + "WCE": { + "trend": -2.242935792651224e-8 + }, + "WNA": { + "trend": -1.0439844544407606e-8 + }, + "WSAF": { + "trend": 8.275527108025926e-8 + }, + "WSB": { + "trend": -2.0568963421396802e-8 + } + }, + "psl": { + "ARP": { + "trend": -2.167185068130493 + }, + "CAF": { + "trend": -0.6363555192947388 + }, + "CAR": { + "trend": 0.39475005865097046 + }, + "CAU": { + "trend": 0.5430635213851929 + }, + "CNA": { + "trend": 1.5270822048187256 + }, + "EAN": { + "trend": 1.8207390308380127 + }, + "EAS": { + "trend": -0.7824301719665527 + }, + "EAU": { + "trend": 2.8849635124206543 + }, + "ECA": { + "trend": -0.23382511734962463 + }, + "EEU": { + "trend": -0.8296027779579163 + }, + "ENA": { + "trend": 1.6566237211227417 + }, + "ESAF": { + "trend": 1.2189757823944092 + }, + "ESB": { + "trend": -2.225541830062866 + }, + "GIC": { + "trend": 2.315983295440674 + }, + "MDG": { + "trend": 1.787560224533081 + }, + "MED": { + "trend": -1.3569726943969727 + }, + "NAU": { + "trend": 0.2682304382324219 + }, + "NCA": { + "trend": 1.170636773109436 + }, + "NEAF": { + "trend": -1.4343229532241821 + }, + "NEN": { + "trend": 1.1910916566848755 + }, + "NES": { + "trend": 0.20009157061576843 + }, + "NEU": { + "trend": 0.1844691038131714 + }, + "NSA": { + "trend": 0.3243321180343628 + }, + "NWN": { + "trend": -0.5680743455886841 + }, + "NWS": { + "trend": 1.0682200193405151 + }, + "NZ": { + "trend": 2.5723793506622314 + }, + "RAR": { + "trend": -2.5402143001556396 + }, + "RFE": { + "trend": -0.4401140511035919 + }, + "SAH": { + "trend": -1.696691870689392 + }, + "SAM": { + "trend": 0.20312920212745667 + }, + "SAS": { + "trend": -0.8278824687004089 + }, + "SAU": { + "trend": 3.7266461849212646 + }, + "SCA": { + "trend": 0.7987903952598572 + }, + "SEA": { + "trend": -0.9778351783752441 + }, + "SEAF": { + "trend": 0.026325784623622894 + }, + "SES": { + "trend": 0.5187633037567139 + }, + "SSA": { + "trend": 0.8427638411521912 + }, + "SWS": { + "trend": -0.0000296014295599889 + }, + "TIB": { + "trend": 2.398012638092041 + }, + "WAF": { + "trend": -0.7322379946708679 + }, + "WAN": { + "trend": -1.1766570806503296 + }, + "WCA": { + "trend": -1.1801539659500122 + }, + "WCE": { + "trend": -0.8659907579421997 + }, + "WNA": { + "trend": 3.233233690261841 + }, + "WSAF": { + "trend": 0.7704096436500549 + }, + "WSB": { + "trend": -2.422807216644287 + } + } + } + } + } + }, + "PROVENANCE": null, + "DISCLAIMER": null, + "NOTES": null +} \ No newline at end of file diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/index.html b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/index.html new file mode 100644 index 000000000..3eba410de --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/index.html @@ -0,0 +1,628 @@ + + + + + + + + Recipe + + + + + + + + + +
+
+ ESMValTool logo. +
+
+ +

Linear trends.

+ +

+ Box plot, linear trends for the 46 IPCC AR6 reference regions for land +(Iturbide et al., 2020). The diagnostic called in this recipe uses the +seaborn.boxplot function. See seaborn manual for detailed information +(https://seaborn.pydata.org/generated/seaborn.boxplot.html). +

+ +

Authors

+ + + +

Maintainers

+ + + +

Projects

+ +
    + +
+ +

References

+ +
    + +
+ + + + + +
+ + +
+

Tas_Trends

+

+ + + + +

Tas Trends: Plot

+ + + +
+
+ + Seaborn barplot for one or more dataset(s) + +
+ Seaborn barplot for one or more dataset(s) +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + + +

Data files

+ +
+
+ +
+
+ + + +
+ + + +
+

Pr_Trends

+

+ + + + +

Pr Trends: Plot

+ + + +
+
+ + Seaborn barplot for one or more dataset(s) + +
+ Seaborn barplot for one or more dataset(s) +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + + +

Data files

+ +
+
+ +
+
+ + + +
+ + + +
+

Psl_Trends

+

+ + + + +

Psl Trends: Plot

+ + + +
+
+ + Seaborn barplot for one or more dataset(s) + +
+ Seaborn barplot for one or more dataset(s) +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + + +

Data files

+ +
+
+ +
+
+ + + +
+ + + +
+

Ua200_Trends

+

+ + + + +

Ua200 Trends: Plot

+ + + +
+
+ + Seaborn barplot for one or more dataset(s) + +
+ Seaborn barplot for one or more dataset(s) +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + + +

Data files

+ +
+
+ +
+
+ + + +
+ + + +
+

Hus200_Trends

+

+ + + + +

Hus200 Trends: Plot

+ + + +
+
+ + Seaborn barplot for one or more dataset(s) + +
+ Seaborn barplot for one or more dataset(s) +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + + +

Data files

+ +
+
+ +
+
+ + + +
+ + +
+ +

Files

+ +

+ main_log.txt | + main_log_debug.txt | + recipe.yml | + figures | + data +

+ + + + + + \ No newline at end of file diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot.png b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot.png new file mode 100644 index 000000000..f53e386d3 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot.png differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..75dcd84a9 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,2 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..b93b4faba --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,563 @@ + + + + CF-1.6 + 2021-02-16 11:45:48 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1983, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:11:11 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613470230.650301-16746-16-5d25dc8e-8e88-4137-b62f-58e5d0aadd59.nc /cache/tmp/5d25dc8e-8e88-4137-b62f-58e5d0aadd59-adaptor.mars.internal-1613470230.6508858-16746-4-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:56 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1985, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:01:10 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1613469626.1982696-357-11-608caabe-5eb0-4ff0-9ce0-999607e35a90.nc /cache/tmp/608caabe-5eb0-4ff0-9ce0-999607e35a90-adaptor.mars.internal-1613469626.198831-357-3-tmp.grib + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + CF-1.6 + 2021-02-16 11:45:56 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1991, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:08:28 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613470065.2036326-25414-9-9d51e229-2c3a-4c49-8db0-9826e7c34e34.nc /cache/tmp/9d51e229-2c3a-4c49-8db0-9826e7c34e34-adaptor.mars.internal-1613470065.2042449-25414-5-tmp.grib + + + + + + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + CF-1.6 + 2021-02-16 11:52:03 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2006, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:04:50 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1613469849.7102869-13974-28-bdf3c48e-b3fb-4d1c-9b7a-18fee24bfa73.nc /cache/tmp/bdf3c48e-b3fb-4d1c-9b7a-18fee24bfa73-adaptor.mars.internal-1613469849.7109506-13974-9-tmp.grib + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:52:10 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2007, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:11:47 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1613470266.123197-22378-12-a7a67121-6a01-47b1-b95f-77182bda2b8c.nc /cache/tmp/a7a67121-6a01-47b1-b95f-77182bda2b8c-adaptor.mars.internal-1613470266.1237435-22378-5-tmp.grib + + + + + + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + {'set_xlabel': 'region', 'set_ylabel': 'hus trend [yr-1]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'hus', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Specific Humidity at 200 hPa + True + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:51:09 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2009, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:03:45 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613469783.381963-12188-26-86a05c17-3c96-4c17-801a-b25f3fb365bb.nc /cache/tmp/86a05c17-3c96-4c17-801a-b25f3fb365bb-adaptor.mars.internal-1613469783.382495-12188-7-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:22 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1994, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:03:03 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1613469735.874031-10155-11-2c420756-3216-4e8b-a0cb-e294f60b0b95.nc /cache/tmp/2c420756-3216-4e8b-a0cb-e294f60b0b95-adaptor.mars.internal-1613469735.8894975-10155-2-tmp.grib + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:51:56 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2004, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:05:46 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613469901.634478-30491-14-8a488d54-f4b4-4c64-9b41-6de1146b35d1.nc /cache/tmp/8a488d54-f4b4-4c64-9b41-6de1146b35d1-adaptor.mars.internal-1613469901.635564-30491-4-tmp.grib + + + + + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + CF-1.6 + 2021-02-16 11:44:07 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2000, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:10:54 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613470213.6553254-11252-1-1181fdf8-e0f3-4484-8a64-4d7d97546769.nc /cache/tmp/1181fdf8-e0f3-4484-8a64-4d7d97546769-adaptor.mars.internal-1613470213.6572726-11252-1-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:56 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1992, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:02:58 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613469736.4523153-26906-36-37296583-b665-4e94-92d8-58f42264d808.nc /cache/tmp/37296583-b665-4e94-92d8-58f42264d808-adaptor.mars.internal-1613469736.4528513-26906-13-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:13 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1981, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:06:42 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613469958.3069067-30174-23-f8345172-ca12-4a55-bf98-c3967045d3cb.nc /cache/tmp/f8345172-ca12-4a55-bf98-c3967045d3cb-adaptor.mars.internal-1613469958.3075147-30174-8-tmp.grib + + + CF-1.6 + 2021-02-16 11:43:49 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1996, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:03:53 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data4/adaptor.mars.internal-1613469789.6651168-8291-9-9abdc6ef-bbb2-456b-8470-79f01fadc978.nc /cache/tmp/9abdc6ef-bbb2-456b-8470-79f01fadc978-adaptor.mars.internal-1613469789.6657233-8291-3-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:44:00 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1999, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:02:05 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613469683.6556232-2910-3-414eaa94-1610-4575-b98f-15954e22a2cf.nc /cache/tmp/414eaa94-1610-4575-b98f-15954e22a2cf-adaptor.mars.internal-1613469683.6566203-2910-1-tmp.grib + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:51:38 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2005, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:06:40 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1613469955.4953496-29107-29-a9a090fa-f1ef-4800-adc7-6751f5060b02.nc /cache/tmp/a9a090fa-f1ef-4800-adc7-6751f5060b02-adaptor.mars.internal-1613469955.4959936-29107-7-tmp.grib + + + CF-1.6 + 2021-02-16 11:45:21 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1986, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:02:50 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1613469727.7449334-6099-25-08f99fb3-4306-4665-b1cf-7856acd7d074.nc /cache/tmp/08f99fb3-4306-4665-b1cf-7856acd7d074-adaptor.mars.internal-1613469727.7455-6099-9-tmp.grib + + + CF-1.6 + 2021-02-16 11:44:18 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1998, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:09:17 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613470115.4492025-3662-30-e76a4636-bcc7-4bc8-84c5-fb6c5e8a0b5b.nc /cache/tmp/e76a4636-bcc7-4bc8-84c5-fb6c5e8a0b5b-adaptor.mars.internal-1613470115.4498112-3662-6-tmp.grib + + + + + + + + native6 + True + ERA5 + hus200_trends + 2009 + E5 + /executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc + mon + 133 + pl + Specific Humidity + Amon + ['atmos'] + hus + trend_hus200 + native6 + 0 + True + hus + specific_humidity + 1980 + 3 + 1980/2009 + 1M + reanaly + 00 + 1 + hus + v1 + {'operator': 'mean'} + {'units': 'year-1'} + {'levels': 20000, 'scheme': 'linear', 'coordinate': 'air_pressure'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc')} + + + + + + + + CF-1.6 + 2021-02-16 11:46:09 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1990, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:11:56 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1613470273.542572-19140-31-0e1b367e-c733-4ed2-9606-a73bfca795af.nc /cache/tmp/0e1b367e-c733-4ed2-9606-a73bfca795af-adaptor.mars.internal-1613470273.543159-19140-6-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:41 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1987, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:04:40 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1613469838.4995203-21337-1-80de0a3c-e37a-43ad-92bf-cea62dbf9845.nc /cache/tmp/80de0a3c-e37a-43ad-92bf-cea62dbf9845-adaptor.mars.internal-1613469838.5015337-21337-1-tmp.grib + + + CF-1.6 + 2021-02-16 11:46:17 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1982, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:09:09 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613470105.512701-1530-24-cc0d6ec3-1034-4a7b-893b-9b0c519b99f4.nc /cache/tmp/cc0d6ec3-1034-4a7b-893b-9b0c519b99f4-adaptor.mars.internal-1613470105.5133204-1530-10-tmp.grib + + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:51:44 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2002, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:09:24 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data4/adaptor.mars.internal-1613470119.8506238-10344-9-47c6cd1d-4a29-4b5a-b3b6-b21917502fd5.nc /cache/tmp/47c6cd1d-4a29-4b5a-b3b6-b21917502fd5-adaptor.mars.internal-1613470119.8514302-10344-3-tmp.grib + + + CF-1.6 + 2021-02-16 11:45:49 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1993, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:00:18 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1613469573.4109259-4304-7-b30ea1fb-15ec-4807-a61b-905d8f907011.nc /cache/tmp/b30ea1fb-15ec-4807-a61b-905d8f907011-adaptor.mars.internal-1613469573.4114761-4304-3-tmp.grib + + + CF-1.6 + 2021-02-16 11:51:24 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2001, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:03:58 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613469795.7604463-2875-11-ab513f60-c050-45a7-8a4c-a5792d1a6f07.nc /cache/tmp/ab513f60-c050-45a7-8a4c-a5792d1a6f07-adaptor.mars.internal-1613469795.7610385-2875-5-tmp.grib + + + CF-1.6 + 2021-02-16 11:45:33 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1988, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:10:19 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1613470175.481168-23469-3-0d5351f0-6e89-44ed-93f8-731bf45677fc.nc /cache/tmp/0d5351f0-6e89-44ed-93f8-731bf45677fc-adaptor.mars.internal-1613470175.4817464-23469-2-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:42 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1989, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:00:15 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613469573.177093-21860-27-8e91f2ff-a89f-4ee1-bfac-84b61134b93e.nc /cache/tmp/8e91f2ff-a89f-4ee1-bfac-84b61134b93e-adaptor.mars.internal-1613469573.1776888-21860-9-tmp.grib + + + CF-1.6 + 2021-02-16 11:46:02 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1984, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:10:10 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1613470168.9592538-10249-16-50b873d0-044d-4c7a-afd8-876a097999bb.nc /cache/tmp/50b873d0-044d-4c7a-afd8-876a097999bb-adaptor.mars.internal-1613470168.9597912-10249-5-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:44:29 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1997, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:04:48 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613469844.8080084-8720-32-aa824d5d-5cdf-4c9a-9a0f-eb1eee27eaa9.nc /cache/tmp/aa824d5d-5cdf-4c9a-9a0f-eb1eee27eaa9-adaptor.mars.internal-1613469844.8087256-8720-7-tmp.grib + + + CMIP + CMIP6 + ACCESS-ESM1-5 + hus200_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc + mon + gn + CSIRO + Specific Humidity + Amon + ['atmos'] + hus + trend_hus200 + CMIP6 + 1 + hus + specific_humidity + 1980 + 1980/2009 + 1 + hus + v20191115 + {'operator': 'mean'} + {'units': 'year-1'} + {'levels': 20000, 'scheme': 'linear', 'coordinate': 'air_pressure'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc')} + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:45:15 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1995, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:11:02 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613470221.7721999-10725-36-b1f369f5-667a-4c0e-802e-7bdc07de5eea.nc /cache/tmp/b1f369f5-667a-4c0e-802e-7bdc07de5eea-adaptor.mars.internal-1613470221.7731438-10725-8-tmp.grib + + + CF-1.6 + 2021-02-16 11:51:50 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2003, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:12:04 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1613470283.0155637-7061-21-4b14e237-48b7-4614-9924-bca4bd04ae02.nc /cache/tmp/4b14e237-48b7-4614-9924-bca4bd04ae02-adaptor.mars.internal-1613470283.0161061-7061-6-tmp.grib + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:46:09 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1980, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:07:34 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613470011.744898-5277-26-3b49d8e7-f167-42e0-8946-84c6efae1a32.nc /cache/tmp/3b49d8e7-f167-42e0-8946-84c6efae1a32-adaptor.mars.internal-1613470011.7453704-5277-6-tmp.grib + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-21T06:04:10Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-21T06:04:10Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: hus (['fld_s30i205']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/3acd2b3a-e41b-4c1b-8b83-e9fc40e60d9d + hus + r1i1p1f1 + v20191115 + + + + + + + + + CF-1.6 + 2021-02-16 11:51:31 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2008, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:01:11 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613469629.0500119-6766-3-57592f1f-4916-4b53-a1a1-2f7ca7032a10.nc /cache/tmp/57592f1f-4916-4b53-a1a1-2f7ca7032a10-adaptor.mars.internal-1613469629.050683-6766-1-tmp.grib + + diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot.png b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot.png new file mode 100644 index 000000000..0c680ab3b Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot.png differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..9957c18ce --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,5 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical + +Additional data citation information was found, for which no entry is available in the bibtex file: +- Huffman et al. 1997, http://dx.doi.org/10.1175/1520-0477(1997)078<0005:TGPCPG>2.0.CO;2; Adler et al. 2003, http://dx.doi.org/10.1175/1525-7541(2003)004<1147:TVGPCP>2.0.CO;2; Huffman et al. 2009, http://dx.doi.org/10.1029/2009GL040000; Adler et al. 2016, Global Precipitation Climatology Project (GPCP) Monthly Analysis: Climate Algorithm Theoretical Basis Document (C-ATBD) diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..6e0a5d830 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,624 @@ + + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:11:19 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2003, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:07 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1589813458.216269-19620-17-13c7ff40-23c8-46fc-984b-569876c4bf5a.nc /cache/tmp/13c7ff40-23c8-46fc-984b-569876c4bf5a-adaptor.mars.internal-1589813458.2168717-19620-7-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:02 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1987, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:32 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1589813483.8317907-30806-25-bb7f3876-9dfc-4f75-8f22-5d1570544e7c.nc /cache/tmp/bb7f3876-9dfc-4f75-8f22-5d1570544e7c-adaptor.mars.internal-1589813483.8323789-30806-9-tmp.grib + + + CF-1.6 + 2020-05-18 17:10:58 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1989, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:32 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813484.3786476-16882-27-e4f6bc2c-4ca2-4e9e-b948-64ceb7cd9dd8.nc /cache/tmp/e4f6bc2c-4ca2-4e9e-b948-64ceb7cd9dd8-adaptor.mars.internal-1589813484.3793712-16882-3-tmp.grib + + + + + + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + + + + + + CF-1.6 + 2020-05-18 17:11:38 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2006, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:09 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1589813461.3126838-28698-21-a4cbbbea-2c9b-4b0b-9d4a-0f6eca51e342.nc /cache/tmp/a4cbbbea-2c9b-4b0b-9d4a-0f6eca51e342-adaptor.mars.internal-1589813461.3133078-28698-6-tmp.grib + + + + + + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + + + + + + + + + + + obs4MIPs + GPCP-V2.3 + pr_trends + 2009 + /executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc + mon + Precipitation + Amon + [] + pr + trend_pr + obs4MIPs + 0 + True + pr + precipitation_flux + 1980 + 1 + 1980/2009 + kg m-2 s-1 + pr + v20180519 + {'operator': 'mean'} + {'units': 'mm kg m-3 day-1 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc')} + + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:10:54 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1988, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:17 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1589813469.056247-754-26-913fe329-ba94-4ae0-ade5-3faec48ca11b.nc /cache/tmp/913fe329-ba94-4ae0-ade5-3faec48ca11b-adaptor.mars.internal-1589813469.0568333-754-7-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:08 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1995, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:46 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1589813437.9998176-18961-23-7e078777-d9f0-443f-9563-031fcc74735a.nc /cache/tmp/7e078777-d9f0-443f-9563-031fcc74735a-adaptor.mars.internal-1589813438.000431-18961-4-tmp.grib + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:32:57Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:32:57Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: pr (['fld_s05i216']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/e1bc1d0d-54d8-4a7f-adae-d3f6324a2366 + pr + r1i1p1f1 + v20191115 + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:11:27 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2002, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:08 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1589813460.3256578-1099-32-ed3bba2e-6aad-4895-bd7d-0295040b060a.nc /cache/tmp/ed3bba2e-6aad-4895-bd7d-0295040b060a-adaptor.mars.internal-1589813460.32628-1099-8-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:12:11 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2008, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:59 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1589813452.0306456-13371-18-51f17967-660b-460f-8748-305bc63d449a.nc /cache/tmp/51f17967-660b-460f-8748-305bc63d449a-adaptor.mars.internal-1589813452.0317402-13371-5-tmp.grib + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + + + + + + + + + + + native6 + True + ERA5 + pr_trends + 2009 + E5 + /executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc + mon + Precipitation + Amon + ['atmos'] + pr + trend_pr + native6 + 1 + True + pr + precipitation_flux + 1980 + 3 + 1980/2009 + 1M + reanaly + 00 + kg m-2 s-1 + pr + v1 + {'operator': 'mean'} + {'units': 'mm kg m-3 day-1 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc')} + + + CF-1.6 + 2020-05-18 17:11:07 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1992, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:23 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1589813478.4421573-19426-27-93c07648-9c24-4774-afac-ab8494cc1c45.nc /cache/tmp/93c07648-9c24-4774-afac-ab8494cc1c45-adaptor.mars.internal-1589813478.442782-19426-6-tmp.grib + + + + + + + + + + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + + + + + + CF-1.6 + 2020-05-18 17:11:13 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1997, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:40 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1589813493.9403872-785-27-b6a8debc-2065-45bd-8eb9-d8ab28e279c6.nc /cache/tmp/b6a8debc-2065-45bd-8eb9-d8ab28e279c6-adaptor.mars.internal-1589813493.941028-785-6-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:22 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1983, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:11:12 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589821865.4731586-26038-11-d3756dac-9690-4cf6-aaec-fccd1ec45fa6.nc /cache/tmp/d3756dac-9690-4cf6-aaec-fccd1ec45fa6-adaptor.mars.internal-1589821865.473673-26038-2-tmp.grib + + + + + + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:11:26 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1981, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:11:12 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1589821865.5097106-16837-1-813ddd24-a67a-457b-91ec-fbd77711743c.nc /cache/tmp/813ddd24-a67a-457b-91ec-fbd77711743c-adaptor.mars.internal-1589821865.5130239-16837-1-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:19 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1998, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:57 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589813450.5289319-14034-30-468ce8cb-5372-422c-8ccf-5853fb06dc8e.nc /cache/tmp/468ce8cb-5372-422c-8ccf-5853fb06dc8e-adaptor.mars.internal-1589813450.5295234-14034-7-tmp.grib + + + + + + + + CF-1.4 + 2.9.1 + NOAA Climate Data Record Program for satellites, FY 2011. Global Precipitation Climatology Project (GPCP) Monthly Version 2.3 gridded, merged satellite/gauge precipitation Climate Data Record (CDR) with errors from 1979 to present. + George Huffman (george.j.huffman@nasa.gov) + 2018-02-08T15:25:54Z + mon + 2018-02-08T15:25:54Z CMOR rewrote data to comply with CF standards and CMIP5 requirements. + NASA-GSFC + NASA Goddard Space Flight Center, Greenbelt MD, USA + CMIP5 + Obs-GPCP + atmos + observations + obs4MIPs + atmos + Huffman et al. 1997, http://dx.doi.org/10.1175/1520-0477(1997)078<0005:TGPCPG>2.0.CO;2; Adler et al. 2003, http://dx.doi.org/10.1175/1525-7541(2003)004<1147:TVGPCP>2.0.CO;2; Huffman et al. 2009, http://dx.doi.org/10.1029/2009GL040000; Adler et al. 2016, Global Precipitation Climatology Project (GPCP) Monthly Analysis: Climate Algorithm Theoretical Basis Document (C-ATBD) + Obs-GPCP (Global Precipitation Climatology Project) v23rB1 + GPCP + satellite_retrieval_and_gauge_analysis + Table Amon_ana (10 March 2011) 34230b4cbd7bedf38c827d6e41c1b8ea + Global Precipitation Climatology Project (GPCP) Climate Data Record (CDR), Monthly V2.3 observation output prepared for obs4MIPs. + 4070c751-6c2d-440f-a4d7-5b325fb98990 + + + + + + + + CF-1.6 + 2020-05-18 17:11:20 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2001, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:01 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813452.3176594-16780-23-29878f6f-a86a-4ab6-8775-f70663683d99.nc /cache/tmp/29878f6f-a86a-4ab6-8775-f70663683d99-adaptor.mars.internal-1589813452.3182452-16780-3-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:01 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1990, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:00 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813446.9893258-16592-23-03f38918-9e1c-4070-b594-17946c2eed53.nc /cache/tmp/03f38918-9e1c-4070-b594-17946c2eed53-adaptor.mars.internal-1589813446.9902925-16592-6-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:04 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1991, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:19 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589813470.1575496-2209-27-3fe692d9-0cfe-4807-9aea-01bd5fd4ad2f.nc /cache/tmp/3fe692d9-0cfe-4807-9aea-01bd5fd4ad2f-adaptor.mars.internal-1589813470.1581733-2209-6-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:05 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1994, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:32 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data4/adaptor.mars.internal-1589813484.1459713-16592-25-c52fbab8-c433-4ec6-b0ee-f017e1862a63.nc /cache/tmp/c52fbab8-c433-4ec6-b0ee-f017e1862a63-adaptor.mars.internal-1589813484.146485-16592-7-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:26 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1999, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:16 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1589813468.2532623-4797-12-9d7f5306-8a30-403f-9434-e82a472e9b19.nc /cache/tmp/9d7f5306-8a30-403f-9434-e82a472e9b19-adaptor.mars.internal-1589813468.2538893-4797-1-tmp.grib + + + CMIP + CMIP6 + ACCESS-ESM1-5 + pr_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc + mon + gn + CSIRO + Precipitation + Amon + ['atmos'] + pr + trend_pr + CMIP6 + 2 + pr + precipitation_flux + 1980 + 1980/2009 + kg m-2 s-1 + pr + v20191115 + {'operator': 'mean'} + {'units': 'mm kg m-3 day-1 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc')} + + + + + + + + CF-1.6 + 2020-05-18 17:11:23 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2004, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:49 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813438.0962238-3484-25-85f9f118-0af2-4ffa-a37d-e82b1a5d7f37.nc /cache/tmp/85f9f118-0af2-4ffa-a37d-e82b1a5d7f37-adaptor.mars.internal-1589813438.0967617-3484-8-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:00 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1986, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:51 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1589813438.0419762-3368-23-833fb808-429e-4dc7-a564-59128c4d52a9.nc /cache/tmp/833fb808-429e-4dc7-a564-59128c4d52a9-adaptor.mars.internal-1589813438.0425093-3368-4-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:33 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2005, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:33 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813484.5397515-16531-27-ce001458-821b-4963-ac93-426c375e67a7.nc /cache/tmp/ce001458-821b-4963-ac93-426c375e67a7-adaptor.mars.internal-1589813484.5403068-16531-5-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:13 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1996, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:51 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1589813438.3661757-1452-25-39338a7c-c6a6-425f-8841-ca74a5974f79.nc /cache/tmp/39338a7c-c6a6-425f-8841-ca74a5974f79-adaptor.mars.internal-1589813438.3667338-1452-8-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:59 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2007, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:09 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data4/adaptor.mars.internal-1589813462.1731389-29118-23-0f5c3eb1-b2b5-4833-b023-241c5aa7371e.nc /cache/tmp/0f5c3eb1-b2b5-4833-b023-241c5aa7371e-adaptor.mars.internal-1589813462.17375-29118-4-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:10:54 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1982, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:10:48 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1589821839.6173804-1554-30-8e8cfbfa-0173-4c02-a703-2289208d617a.nc /cache/tmp/8e8cfbfa-0173-4c02-a703-2289208d617a-adaptor.mars.internal-1589821839.6179628-1554-7-tmp.grib + + + + + + + + + + + + + + + + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + Data + {'set_xlabel': 'region', 'set_ylabel': 'pr trend [mm kg m-3 day-1 yr-1]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'pr', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Precipitation + True + + + CF-1.6 + 2020-05-18 17:11:37 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2009, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:23 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589813477.2671602-16021-24-26772b19-2e71-4366-90d1-4d45a131417d.nc /cache/tmp/26772b19-2e71-4366-90d1-4d45a131417d-adaptor.mars.internal-1589813477.2677782-16021-6-tmp.grib + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:10:57 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1985, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:10:47 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589821839.5152671-23448-17-8641043a-88aa-4c2f-801a-d3f558aa3850.nc /cache/tmp/8641043a-88aa-4c2f-801a-d3f558aa3850-adaptor.mars.internal-1589821839.5158448-23448-3-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:12:03 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1984, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:11:36 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1589821889.2301419-9238-26-8f20e52d-f8e4-4c4b-b312-050cf3897fe6.nc /cache/tmp/8f20e52d-f8e4-4c4b-b312-050cf3897fe6-adaptor.mars.internal-1589821889.230721-9238-7-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:10 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1993, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:16 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1589813467.65487-21149-27-e75f987e-ef6c-4e1a-9b03-e9ec92f96c22.nc /cache/tmp/e75f987e-ef6c-4e1a-9b03-e9ec92f96c22-adaptor.mars.internal-1589813467.6554835-21149-5-tmp.grib + + + CF-1.6 + 2020-05-18 17:10:59 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1980, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:10:48 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589821839.6346538-4497-31-e455f98e-1de7-43f5-a761-e66e676c0c29.nc /cache/tmp/e455f98e-1de7-43f5-a761-e66e676c0c29-adaptor.mars.internal-1589821839.6352246-4497-6-tmp.grib + + + + CF-1.6 + 2020-05-18 17:11:15 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2000, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:23 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1589813477.394166-23721-9-9795d7d4-bc5e-46cf-b52e-e3c3cfad20a7.nc /cache/tmp/9795d7d4-bc5e-46cf-b52e-e3c3cfad20a7-adaptor.mars.internal-1589813477.3947363-23721-2-tmp.grib + + + + diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot.png b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot.png new file mode 100644 index 000000000..2fcebee9d Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot.png differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..ac7bbc084 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,3 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..9fb2f812d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,1725 @@ + + + + + + + + + + + + + + + + + + + + + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + Mon Nov 11 09:34:23 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:22Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:22Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:34:24 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2004010100_2004120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2004010100_2004120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/72a39390-1e83-463d-a51a-40fd5ac76066 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + + + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + + + + + + Mon Nov 11 08:21:38 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:41Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:41Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:21:39 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1985010100_1985120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1985010100_1985120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/f997f820-3e95-4dbc-a658-901507f86cda + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + obs4MIPs + ERA-5 + psl_trends + 2009 + /executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc + mon + Sea Level Pressure + Amon + [] + psl + trend_psl + obs4MIPs + 0 + true' + psl + air_pressure_at_mean_sea_level + 1980 + 1 + 1980/2009 + Pa + psl + v20250220 + {'operator': 'mean'} + {'units': 'm-1 kg s-2 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc')} + + + + + + + + Mon Nov 11 09:22:34 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:15Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:15Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:22:35 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2001010100_2001120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2001010100_2001120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/54bbb01a-cb39-4cbe-84b3-cda279e4d192 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:53:34 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:33Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:33Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:53:35 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2009010100_2009120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2009010100_2009120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4f3a86f9-a5da-46b7-b266-2bc43e58acea + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:14:09 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:37Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:37Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:14:10 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1983010100_1983120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1983010100_1983120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/dced162b-acde-4355-b7de-2f91893bc262 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:26:35 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:18Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:18Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:26:36 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2002010100_2002120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2002010100_2002120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/7ec87699-feeb-44c9-b275-26488e950d1c + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + + + + + + Mon Nov 11 08:36:33 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:49Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:49Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:36:33 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1989010100_1989120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1989010100_1989120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/17ca405e-1d86-4c5e-b3ee-51184398b99e + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + Mon Nov 11 08:40:21 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:51Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:51Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:40:22 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1990010100_1990120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1990010100_1990120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/8d1cd9a0-3fe4-4bcf-898d-4a04f429239f + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 08:55:28 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:00Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:00Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:55:29 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1994010100_1994120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1994010100_1994120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/afdb6ded-22e4-4c48-8406-3b09b3f125ce + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + + + + + + + + + + + + + + + + + + + + + Mon Nov 11 09:14:46 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:11Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:11Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:14:47 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1999010100_1999120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1999010100_1999120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/c7e331bc-9644-435c-916f-f53117e72b2d + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:18:41 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:13Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:13Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:18:41 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2000010100_2000120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2000010100_2000120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/0f1774d8-899f-4a48-9fe8-f8161928cc2d + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:47:48 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:55Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:55Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:47:49 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1992010100_1992120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1992010100_1992120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/3a0e1a1e-1d6e-4270-9460-78e834cb9fa9 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:10:27 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:34Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:34Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:10:27 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1982010100_1982120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1982010100_1982120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4f920f30-c6e0-4b3e-a598-9044d1b0353a + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + Data + {'set_xlabel': 'region', 'set_ylabel': 'psl trend [m-1 kg s-2 yr-1]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'psl', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Sea Level Pressure + True + + + Mon Nov 11 08:02:59 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:30Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:30Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:03:00 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1980010100_1980120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1980010100_1980120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/158e91bc-2547-4872-b182-28eac623877d + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 09:38:11 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:24Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:24Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:38:12 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2005010100_2005120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2005010100_2005120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b5fdbc84-4027-474f-9d5c-4530ee7a7e13 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:44:04 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:53Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:53Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:44:05 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1991010100_1991120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1991010100_1991120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/f649ff6a-015b-4903-84b7-763a47522361 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:45:45 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:28Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:28Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:45:46 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2007010100_2007120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2007010100_2007120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/49ac6334-7b04-44ad-904f-c2e046cc3250 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:32:50 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:47Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:47Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:32:51 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1988010100_1988120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1988010100_1988120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4a48baad-460e-46ed-8e2f-a2058357fbe7 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:51:41 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:58Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:58Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:51:42 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1993010100_1993120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1993010100_1993120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e443b7fb-499c-44f8-b303-5e6130ebb777 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + Mon Nov 11 09:49:40 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:31Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:31Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:49:41 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2008010100_2008120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2008010100_2008120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/5cb99581-4a2b-4b7b-a5f5-18ed12eaac0b + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 08:06:39 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:32Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:32Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:06:40 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1981010100_1981120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1981010100_1981120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b7b9d419-762f-4788-9e87-d4dd94ddb9fa + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:25:17 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:43Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:43Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:25:18 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1986010100_1986120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1986010100_1986120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b229480a-509c-432f-9b76-eedc644ef146 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:59:15 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:02Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:02Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:59:16 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1995010100_1995120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1995010100_1995120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e7e486a2-96b3-4c5c-af50-c29f55c5578e + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:11:01 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:08Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:08Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:11:01 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1998010100_1998120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1998010100_1998120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e982d5e2-0440-4d7d-b4b2-d0455a6cdb3c + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CMIP + CMIP6 + ACCESS-ESM1-5 + psl_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc + mon + gn + CSIRO + Sea Level Pressure + Amon + ['atmos'] + psl + trend_psl + CMIP6 + 1 + psl + air_pressure_at_mean_sea_level + 1980 + 1980/2009 + Pa + psl + v20191115 + {'operator': 'mean'} + {'units': 'm-1 kg s-2 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc')} + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:03:09Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:03:09Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: psl (['fld_s16i222']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/d0f948a8-3d38-4b57-9001-9e0cd1081cba + psl + r1i1p1f1 + v20191115 + + + Mon Nov 11 08:29:07 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:45Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:45Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:29:07 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1987010100_1987120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1987010100_1987120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/572dcc0c-abdf-41e7-9ade-2939db1efb7d + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:07:14 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:06Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:06Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:07:15 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1997010100_1997120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1997010100_1997120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/2c7f18b9-ec6f-404a-ab90-c42a45f52535 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:30:26 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:20Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:20Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:30:27 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2003010100_2003120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2003010100_2003120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/af36bbbd-e130-483b-8c41-a537a887b4de + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:41:57 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:26Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:26Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:41:57 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2006010100_2006120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2006010100_2006120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b161962c-7c7d-441a-b113-9462797a996a + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:17:53 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:39Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:39Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:17:54 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1984010100_1984120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1984010100_1984120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d09828c9-bfaa-4771-aa88-920f0f2afda6 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + Mon Nov 11 09:03:21 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:04Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:04Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:03:21 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1996010100_1996120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1996010100_1996120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/04abe241-81c5-42ef-ace7-8c8d68399fb8 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot.png b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot.png new file mode 100644 index 000000000..04e7a9970 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot.png differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..c0ee1c50b --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,6 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. + +Additional data citation information was found, for which no entry is available in the bibtex file: +- doi:https://doi.org/10.1029/2019JD032361 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..4c6dcfba7 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,1780 @@ + + + + + + + + + Mon Nov 11 09:15:14 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:32Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:32Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:15:15 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1999010100_1999120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1999010100_1999120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4ba68b72-f322-4c68-8ad4-7a42d4a887e3 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + Mon Nov 11 09:19:10 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:34Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:34Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:19:11 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2000010100_2000120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2000010100_2000120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/c647754a-d25b-47ae-b19c-0b95a8ae0f4c + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:42:25 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:48Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:48Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:42:26 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2006010100_2006120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2006010100_2006120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d34697e2-8eeb-4746-9271-7b4f2821f3d1 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:14:36 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:56Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:56Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:14:37 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1983010100_1983120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1983010100_1983120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d510817d-08f6-4c23-9a0e-2eb54cb3461b + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mon Nov 11 08:52:10 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:18Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:18Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:52:10 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1993010100_1993120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1993010100_1993120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/18577a92-66f9-4161-af93-fdc14679fd32 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:29:34 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:05Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:05Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:29:35 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1987010100_1987120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1987010100_1987120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/53120b0a-2990-4fe0-a319-9a385ee19632 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:07:44 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:28Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:28Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:07:45 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1997010100_1997120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1997010100_1997120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b7de1b65-9dcd-4576-bf2b-df3aab3f47bf + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + + + + + + + + + + + + + + + + + + + + + Mon Nov 11 08:03:30 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:49Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:49Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:03:30 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1980010100_1980120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1980010100_1980120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d56e5162-2817-4836-9832-dfe9baeaccb6 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + Mon Nov 11 08:33:20 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:07Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:07Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:33:21 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1988010100_1988120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1988010100_1988120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/801bce5d-a49c-4ef8-8bab-42f71ef8a4a1 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:10:58 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:53Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:53Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:10:59 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1982010100_1982120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1982010100_1982120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/bb058d6b-50b3-4651-a9a5-79269578d6cb + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:37:00 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:09Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:09Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:37:01 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1989010100_1989120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1989010100_1989120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/67f04e82-62cd-4788-8ae6-1c0212310a3a + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 08:18:20 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:58Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:58Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:18:21 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1984010100_1984120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1984010100_1984120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/8a564d85-a0d9-4331-b382-39cb37941f32 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:30:55 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:42Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:42Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:30:55 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2003010100_2003120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2003010100_2003120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/04615eb9-4b0b-4f87-ba2e-4aed5b5eb368 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + Data + {'set_xlabel': 'region', 'set_ylabel': 'tas trend [K/yr]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'tas', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Near-Surface Air Temperature + True + + + + + + + + CF-1.7 + 2 versions, statistical infilling and no-infilling + Created on 2022-03-30 10:07:20 + levante6.atos.local + Amon + ground + OBS + doi:https://doi.org/10.1029/2019JD032361 + https://crudata.uea.ac.uk/cru/data/temperature/ + 2 + HadCRUT5 data reformatted for ESMValTool v2.5.0 + b309192 + 5.0.1.0-analysis + + + + + + + Mon Nov 11 09:38:40 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:46Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:46Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:38:41 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2005010100_2005120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2005010100_2005120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/fd660fd4-546f-458d-9562-7fd4ff87bbbf + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + + + + + + Mon Nov 11 09:50:08 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:53Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:53Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:50:09 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2008010100_2008120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2008010100_2008120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/05cbf5eb-9499-4378-bc5d-3f8480aa8e46 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 09:23:03 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:37Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:37Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:23:04 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2001010100_2001120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2001010100_2001120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/3d029771-4977-4d59-a3bb-8201427b1fea + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + Mon Nov 11 09:54:03 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:55Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:55Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:54:04 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2009010100_2009120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2009010100_2009120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/0f95b9b5-4572-4a11-be95-98ddf40abaad + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + OBS + HadCRUT5 + tas_trends + 2009 + /executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc + mon + Near-Surface Air Temperature + Amon + ['atmos'] + tas + trend_tas + OBS + 0 + tas + air_temperature + 1980 + 2 + 1980/2009 + ground + K + tas + 5.0.1.0-analysis + {'operator': 'mean'} + {'units': 'K yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc')} + + + Mon Nov 11 08:40:50 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:11Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:11Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:40:50 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1990010100_1990120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1990010100_1990120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e414f376-cbcc-417e-8915-ab31ffc36b8e + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:46:14 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:51Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:51Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:46:15 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2007010100_2007120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2007010100_2007120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/a55599f3-d0af-4b17-afa2-b3212b60035f + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:55:58 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:21Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:21Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:55:59 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1994010100_1994120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1994010100_1994120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/0ab8f721-dc43-4af9-b689-4938ee79212e + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:44:34 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:14Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:14Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:44:35 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1991010100_1991120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1991010100_1991120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/50033987-988c-4f51-975e-acc4d708019e + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T03:52:25Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T03:52:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: tas (['fld_s03i236']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/d2debfa6-c0e2-4339-bac8-08d97867ae3a + tas + r1i1p1f1 + v20191115 + + + Mon Nov 11 09:27:05 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:39Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:39Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:27:06 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2002010100_2002120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2002010100_2002120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/874ca4ae-cfb5-459a-8b24-cbd4a5849c83 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:48:19 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:16Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:16Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:48:20 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1992010100_1992120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1992010100_1992120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/bb482f0c-8c12-4888-a35a-028c307503d2 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + CMIP + CMIP6 + ACCESS-ESM1-5 + tas_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + trend_tas + CMIP6 + 2 + tas + air_temperature + 1980 + 1980/2009 + K + tas + v20191115 + {'operator': 'mean'} + {'units': 'K yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc')} + + + Mon Nov 11 08:25:49 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:02Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:02Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:25:50 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1986010100_1986120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1986010100_1986120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/03a8eb6e-3782-48bd-a326-939e2ae3f353 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 08:07:07 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:51Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:51Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:07:08 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1981010100_1981120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1981010100_1981120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/df79817e-3ec4-446a-bbdd-b9423c74d38c + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 08:59:45 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:23Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:23Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:59:46 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1995010100_1995120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1995010100_1995120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/cecd5ed7-8e72-4f08-930a-35e8f49e9408 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + Mon Nov 11 08:22:05 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:00Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:00Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:22:06 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1985010100_1985120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1985010100_1985120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/6744ef3c-aa21-41ef-911a-f0c208686178 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + obs4MIPs + ERA-5 + tas_trends + 2009 + /executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc + mon + Near-Surface Air Temperature + Amon + [] + tas + trend_tas + obs4MIPs + 1 + true' + tas + air_temperature + 1980 + 1 + 1980/2009 + K + tas + v20250220 + {'operator': 'mean'} + {'units': 'K yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc')} + + + Mon Nov 11 09:34:52 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:44Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:44Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:34:53 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2004010100_2004120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2004010100_2004120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/5714205b-b115-4087-a270-c6008c4b2f4b + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + Mon Nov 11 09:11:28 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:30Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:30Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:11:29 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1998010100_1998120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1998010100_1998120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/641f0009-16c6-469d-a608-0c2461628d58 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:03:48 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:25Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:25Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:03:49 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1996010100_1996120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1996010100_1996120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/3e8b9d93-8c36-4e61-8c4c-7f2ae46a4bb3 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot.png b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot.png new file mode 100644 index 000000000..b922604e7 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot.png differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..ac7bbc084 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,3 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..d8d613970 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,1486 @@ + + + + + + + + + + + + + + + + + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:33:28Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:33:28Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/50badc4f-85bd-46f4-a3a9-f22f3874da18 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:32:04Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:32:04Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b740f0b4-b106-4baa-a420-32b25f1b3151 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:18:05Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:18:05Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/7a195c9a-e1aa-4a9e-acf1-eef6f93918c6 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:27:52Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:27:52Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/96fc3a85-3117-41eb-881b-075b54a9a5d6 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:48:58Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:48:58Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/83679911-cdd6-4ac0-9f57-6151925675d1 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:47:34Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:47:34Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d25e1a87-8fbb-4f92-a20f-124326ee1711 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:40:30Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:40:30Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/5295ec9a-1fc7-4e8e-9684-4c126319abb0 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:37:40Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:37:40Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/bf8618bd-e1ef-48a0-9f9b-4727673dc970 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:30:40Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:30:40Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/58d981ea-be18-44a2-b3bc-eedd33e1a184 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:26:28Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:26:28Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/9fbfd57c-633c-4990-bc87-eb2b43e9a06a + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:41:56Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:41:56Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/26426ad1-3864-42d0-9484-aff7b020af4c + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:15:15Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:15:15Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/34fab0ed-a327-481b-be5b-efa2fcf32d1b + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:43:22Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:43:22Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e76bf785-88c0-4212-9d5f-cb5e8719abee + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:29:16Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:29:16Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b7f9a1c9-b795-4c3b-a335-42a850b3672d + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:12:26Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:12:26Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/c6da4931-e135-4bf1-ad7a-324077a76236 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:34:52Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:34:52Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/a76bdcba-e29b-49af-aab7-62eed1fb69f3 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:23:40Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:23:40Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/da28a1c8-d9c6-4ca9-b95b-3f2480daeaed + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:25:04Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:25:04Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/cde99d82-22a9-45fa-bf5a-499731a3f39f + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:53:10Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:53:10Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/315b8a75-d1f5-4c62-a9b2-692ad4b23031 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:16:39Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:16:39Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b8c90cee-e369-49f1-89e6-018466a00885 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:36:16Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:36:16Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b85414ba-a7d1-4fda-aa83-c086ebb94c04 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:44:46Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:44:46Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/a97e783b-1ddb-46fb-88b6-bbb41f5636db + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:13:51Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:13:51Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4ea20509-74fc-4c57-b7af-95270fb5977b + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + obs4MIPs + ERA-5 + ua200_trends + 2009 + /executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc + mon + Eastward Wind + Amon + [] + ua + trend_ua200 + obs4MIPs + 0 + true' + ua + eastward_wind + 1980 + 1 + 1980/2009 + m s-1 + ua + v20250220 + {'operator': 'mean'} + {'units': 'm s-1 yr-1'} + {'levels': 20000, 'scheme': 'linear', 'coordinate': 'air_pressure'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc')} + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:19:29Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:19:29Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/a9127ef5-adc7-4ad2-8c3f-b9277f5eaa8d + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CMIP + CMIP6 + ACCESS-ESM1-5 + ua200_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc + mon + gn + CSIRO + Eastward Wind + Amon + ['atmos'] + ua + trend_ua200 + CMIP6 + 1 + ua + eastward_wind + 1980 + 1980/2009 + m s-1 + ua + v20191115 + {'operator': 'mean'} + {'units': 'm s-1 yr-1'} + {'levels': 20000, 'scheme': 'linear', 'coordinate': 'air_pressure'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc')} + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:20:53Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:20:53Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/129a634a-de75-44c1-b939-53468232c0bd + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:46:10Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:46:10Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/81da8762-59d0-4a52-9f62-d161af99130f + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:51:46Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:51:46Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/80e00d69-3548-4589-8ef7-ea81cf2177d9 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:39:04Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:39:04Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/5fda452a-2b38-43bf-970f-9182a1742ed2 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:22:17Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:22:17Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/32524557-5393-4021-ba0a-526fa55ada45 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-21T06:04:10Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-21T06:04:10Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: ua (['fld_s30i201']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/b4354f60-cd6e-4d1e-9700-90001a182d7d + ua + r1i1p1f1 + v20191115 + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:50:22Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:50:22Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/6add58cd-4f4e-4ba6-a7fa-99f3edf737d1 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + + + + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + {'set_xlabel': 'region', 'set_ylabel': 'ua trend [m s-1 yr-1]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'ua', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Zonal Wind at 200 hPa + True + + + + + + + diff --git a/tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/out.log b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/cmor_log.txt similarity index 100% rename from tests/test-data/regression/esmvaltool/global-mean-timeseries/cmip6_CMIP6.C4MIP CDRMIP.CSIRO.ACCESS-ESM1-5.esm-1pct-brch-1000PgC.r1i1p1f1.Amon.tas.gn.v20191206/out.log rename to tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/cmor_log.txt diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/diagnostic_provenance.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/diagnostic_provenance.yml new file mode 100644 index 000000000..cd9770b49 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/diagnostic_provenance.yml @@ -0,0 +1,10 @@ +? /executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot.png +: &id001 + ancestors: + - /executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc + - /executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc + authors: + - schlund_manuel + caption: Seaborn barplot for one or more dataset(s) +? /executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot.nc +: *id001 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/log.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/log.txt new file mode 100644 index 000000000..49f74eb95 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/log.txt @@ -0,0 +1,120 @@ +/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 + warnings.warn("ESMF installation version {}, ESMPy version {}".format( +INFO:esmvaltool.diag_scripts.shared._base:Starting diagnostic script plot with configuration: +add_aux_coords: true +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +facets_as_columns: +- dataset +input_data: + ? /executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc + : activity: CMIP + alias: CMIP6 + dataset: ACCESS-ESM1-5 + diagnostic: hus200_trends + end_year: 2009 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Specific Humidity + mip: Amon + modeling_realm: + - atmos + preprocessor: trend_hus200 + project: CMIP6 + recipe_dataset_index: 1 + short_name: hus + standard_name: specific_humidity + start_year: 1980 + timerange: 1980/2009 + units: year-1 + variable_group: hus + version: v20191115 + ? /executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc + : alias: native6 + automatic_regrid: true + dataset: ERA5 + diagnostic: hus200_trends + end_year: 2009 + family: E5 + filename: /executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc + frequency: mon + grib_id: '133' + level: pl + long_name: Specific Humidity + mip: Amon + modeling_realm: + - atmos + preprocessor: trend_hus200 + project: native6 + recipe_dataset_index: 0 + reference_for_metric: true + short_name: hus + standard_name: specific_humidity + start_year: 1980 + tier: 3 + timerange: 1980/2009 + tres: 1M + type: reanaly + typeid: '00' + units: year-1 + variable_group: hus + version: v1 +input_files: +- /executions/recipe_20250908_083356/preproc/hus200_trends/hus/metadata.yml +log_level: info +output_file_type: png +plot_dir: /executions/recipe_20250908_083356/plots/hus200_trends/plot +plot_object_methods: + set_xlabel: region + set_ylabel: hus trend [yr-1] +recipe: recipe.yml +reset_index: true +run_dir: /executions/recipe_20250908_083356/run/hus200_trends/plot +scheduler_address: tcp://127.0.0.1:41237 +script: plot +seaborn_func: barplot +seaborn_kwargs: + hue: dataset + x: shape_id + y: hus +seaborn_settings: + rc: + figure.figsize: + - 28 + - 6 + style: ticks +suptitle: Trend in Specific Humidity at 200 hPa +version: 2.12.0 +work_dir: /executions/recipe_20250908_083356/work/hus200_trends/plot +write_netcdf: true + +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/work/hus200_trends/plot +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/plots/hus200_trends/plot +INFO:seaborn_diag:Using plotting function seaborn.barplot +INFO:seaborn_diag:Grouping datasets by 'alias' to create main data frame (data frames are merged [combined along axis 1, i.e., columns] within groups, then concatenated [combined along axis 0, i.e., rows] across groups) +INFO:seaborn_diag:Adding aux_coords as columns +INFO:seaborn_diag:Adding facets as columns: ['dataset'] +INFO:seaborn_diag:Processing group 'CMIP6' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'hus' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Processing group 'native6' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'hus' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Successfully retrieved main data frame from input data +INFO:seaborn_diag:Creating plot with +seaborn.barplot( + data=main_data_frame, + x='shape_id', + y='hus', + hue='dataset', +) +INFO:esmvaltool.diag_scripts.shared.io:Wrote /executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot.nc +INFO:seaborn_diag:Wrote /executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot.png +INFO:esmvaltool.diag_scripts.shared._base:End of diagnostic script run. diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/resource_usage.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/resource_usage.txt new file mode 100644 index 000000000..d4ed45f4e --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/resource_usage.txt @@ -0,0 +1,12 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-09-08 08:35:36.900225 1.0 0.4 0 0.1 0 0.006 0.0 +2025-09-08 08:35:37.945149 2.1 0.8 37 0.1 0 0.007 0.0 +2025-09-08 08:35:38.992349 3.1 1.4 51 0.1 0 0.007 0.0 +2025-09-08 08:35:40.037211 4.2 1.9 50 0.2 0 0.008 0.0 +2025-09-08 08:35:41.079784 5.2 2.4 48 0.2 0 0.009 0.0 +2025-09-08 08:35:42.121032 6.3 2.9 49 0.3 0 0.009 0.0 +2025-09-08 08:35:43.161283 7.3 3.4 50 0.3 0 0.009 0.0 +2025-09-08 08:35:44.208088 8.4 3.9 50 0.3 0 0.009 0.0 +2025-09-08 08:35:45.271743 9.4 4.1 19 0.3 0 0.009 0.0 +2025-09-08 08:35:46.328907 10.5 4.8 63 0.5 0 0.009 0.0 +2025-09-08 08:35:47.387778 11.5 5.8 98 0.3 0 0.009 0.0 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/settings.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/settings.yml new file mode 100644 index 000000000..be625e44a --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/hus200_trends/plot/settings.yml @@ -0,0 +1,32 @@ +seaborn_func: barplot +reset_index: true +write_netcdf: true +seaborn_kwargs: + x: shape_id + y: hus + hue: dataset +add_aux_coords: true +facets_as_columns: +- dataset +plot_object_methods: + set_xlabel: region + set_ylabel: hus trend [yr-1] +seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 +suptitle: Trend in Specific Humidity at 200 hPa +recipe: recipe.yml +version: 2.12.0 +script: plot +run_dir: /executions/recipe_20250908_083356/run/hus200_trends/plot +plot_dir: /executions/recipe_20250908_083356/plots/hus200_trends/plot +work_dir: /executions/recipe_20250908_083356/work/hus200_trends/plot +output_file_type: png +log_level: info +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +scheduler_address: tcp://127.0.0.1:41237 +input_files: +- /executions/recipe_20250908_083356/preproc/hus200_trends/hus/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/main_log.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/main_log.txt new file mode 100644 index 000000000..ad16744d3 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/main_log.txt @@ -0,0 +1,408 @@ +INFO [188770] +______________________________________________________________________ + _____ ____ __ ____ __ _ _____ _ + | ____/ ___|| \/ \ \ / /_ _| |_ _|__ ___ | | + | _| \___ \| |\/| |\ \ / / _` | | | |/ _ \ / _ \| | + | |___ ___) | | | | \ V / (_| | | | | (_) | (_) | | + |_____|____/|_| |_| \_/ \__,_|_| |_|\___/ \___/|_| +______________________________________________________________________ + +Earth System Model Evaluation Tool + +A community tool for the evaluation of Earth system models. + +https://esmvaltool.org + +The Earth System Model Evaluation Tool (ESMValTool) is a community +diagnostics and performance metrics tool for the evaluation of Earth +System Models (ESMs) that allows for routine comparison of single or +multiple models, either against predecessor versions or against +observations. + +Tutorial: https://tutorial.esmvaltool.org +Documentation: https://docs.esmvaltool.org +Contact: esmvaltool-dev@listserv.dfn.de + +If you find this software useful for your research, please cite it using +https://doi.org/10.5281/zenodo.3387139 for ESMValCore or +https://doi.org/10.5281/zenodo.3401363 for ESMValTool or +any of the reference papers listed at https://esmvaltool.org/references/. + +Have fun! + +INFO [188770] Package versions +INFO [188770] ---------------- +INFO [188770] ESMValCore: 2.12.0 +INFO [188770] ESMValTool: 2.13.0.dev148+g2c438d0e0 +INFO [188770] ---------------- +INFO [188770] Reading configuration files from: +/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config/configurations/defaults (defaults) +/home/b/b381141/.config/esmvaltool (default user configuration directory) +/config (command line argument) +INFO [188770] Writing program log files to: +/executions/recipe_20250908_083356/run/main_log.txt +/executions/recipe_20250908_083356/run/main_log_debug.txt +/executions/recipe_20250908_083356/run/cmor_log.txt +WARNING [188770] /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 + warnings.warn("ESMF installation version {}, ESMPy version {}".format( + +INFO [188770] Starting the Earth System Model Evaluation Tool at time: 2025-09-08 08:34:26 UTC +INFO [188770] ---------------------------------------------------------------------- +INFO [188770] RECIPE = /recipe.yml +INFO [188770] RUNDIR = /executions/recipe_20250908_083356/run +INFO [188770] WORKDIR = /executions/recipe_20250908_083356/work +INFO [188770] PREPROCDIR = /executions/recipe_20250908_083356/preproc +INFO [188770] PLOTDIR = /executions/recipe_20250908_083356/plots +INFO [188770] ---------------------------------------------------------------------- +INFO [188770] Running tasks using at most 10 processes +INFO [188770] If your system hangs during execution, it may not have enough memory for keeping this number of tasks in memory. +INFO [188770] If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. +INFO [188770] For Dataset: tas, Amon, OBS, HadCRUT5, 5.0.1.0-analysis, supplementaries: areacella, *, *: ignoring supplementary variable 'areacella', unable to expand wildcards 'mip', 'version'. +INFO [188770] For Dataset: tas, Amon, obs4MIPs, ERA-5, supplementaries: areacella: ignoring supplementary variable 'areacella', unable to expand wildcards 'institute'. +INFO [188770] For Dataset: pr, Amon, obs4MIPs, GPCP-V2.3, supplementaries: areacella: ignoring supplementary variable 'areacella', unable to expand wildcards 'institute'. +INFO [188770] For Dataset: pr, Amon, native6, ERA5, v1, supplementaries: areacella, *, *: ignoring supplementary variable 'areacella', unable to expand wildcards 'mip', 'version'. +INFO [188770] For Dataset: psl, Amon, obs4MIPs, ERA-5, supplementaries: areacella: ignoring supplementary variable 'areacella', unable to expand wildcards 'institute'. +INFO [188770] For Dataset: ua, Amon, obs4MIPs, ERA-5, supplementaries: areacella: ignoring supplementary variable 'areacella', unable to expand wildcards 'institute'. +INFO [188770] For Dataset: hus, Amon, native6, ERA5, v1, supplementaries: areacella, *, *: ignoring supplementary variable 'areacella', unable to expand wildcards 'mip', 'version'. +INFO [188770] Creating tasks from recipe +INFO [188770] Creating tasks for diagnostic tas_trends +INFO [188770] Creating diagnostic task tas_trends/plot +INFO [188770] Creating preprocessor task tas_trends/tas +INFO [188770] Creating preprocessor 'trend_tas' task for variable 'tas' +WARNING [188770] Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'tas_trends', + 'variable_group': 'tas', + 'dataset': 'HadCRUT5', + 'project': 'OBS', + 'mip': 'Amon', + 'short_name': 'tas', + 'alias': 'OBS', + 'frequency': 'mon', + 'long_name': 'Near-Surface Air Temperature', + 'modeling_realm': ['atmos'], + 'original_short_name': 'tas', + 'preprocessor': 'trend_tas', + 'recipe_dataset_index': 0, + 'standard_name': 'air_temperature', + 'tier': 2, + 'timerange': '1980/2009', + 'type': 'ground', + 'units': 'K', + 'version': '5.0.1.0-analysis'} +session: 'recipe_20250908_083356'. +INFO [188770] Found input files for Dataset: tas, Amon, OBS, HadCRUT5, 5.0.1.0-analysis +WARNING [188770] Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'tas_trends', + 'variable_group': 'tas', + 'dataset': 'ERA-5', + 'project': 'obs4MIPs', + 'mip': 'Amon', + 'short_name': 'tas', + 'alias': 'obs4MIPs', + 'frequency': 'mon', + 'long_name': 'Near-Surface Air Temperature', + 'modeling_realm': [], + 'original_short_name': 'tas', + 'preprocessor': 'trend_tas', + 'recipe_dataset_index': 1, + 'reference_for_metric': "true'", + 'standard_name': 'air_temperature', + 'tier': 1, + 'timerange': '1980/2009', + 'units': 'K'} +session: 'recipe_20250908_083356'. +INFO [188770] Found input files for Dataset: tas, Amon, obs4MIPs, ERA-5, v20250220 +INFO [188770] Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +INFO [188770] PreprocessingTask tas_trends/tas created. +INFO [188770] Creating tasks for diagnostic pr_trends +INFO [188770] Creating diagnostic task pr_trends/plot +INFO [188770] Creating preprocessor task pr_trends/pr +INFO [188770] Creating preprocessor 'trend_pr' task for variable 'pr' +WARNING [188770] Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'pr_trends', + 'variable_group': 'pr', + 'dataset': 'GPCP-V2.3', + 'project': 'obs4MIPs', + 'mip': 'Amon', + 'short_name': 'pr', + 'alias': 'obs4MIPs', + 'frequency': 'mon', + 'long_name': 'Precipitation', + 'modeling_realm': [], + 'original_short_name': 'pr', + 'preprocessor': 'trend_pr', + 'recipe_dataset_index': 0, + 'reference_for_metric': True, + 'standard_name': 'precipitation_flux', + 'tier': 1, + 'timerange': '1980/2009', + 'units': 'kg m-2 s-1'} +session: 'recipe_20250908_083356'. +INFO [188770] Found input files for Dataset: pr, Amon, obs4MIPs, GPCP-V2.3, v20180519 +WARNING [188770] Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'pr_trends', + 'variable_group': 'pr', + 'dataset': 'ERA5', + 'project': 'native6', + 'mip': 'Amon', + 'short_name': 'pr', + 'alias': 'native6', + 'automatic_regrid': True, + 'family': 'E5', + 'frequency': 'mon', + 'long_name': 'Precipitation', + 'modeling_realm': ['atmos'], + 'original_short_name': 'pr', + 'preprocessor': 'trend_pr', + 'recipe_dataset_index': 1, + 'reference_for_metric': True, + 'standard_name': 'precipitation_flux', + 'tier': 3, + 'timerange': '1980/2009', + 'tres': '1M', + 'type': 'reanaly', + 'typeid': '00', + 'units': 'kg m-2 s-1', + 'version': 'v1'} +session: 'recipe_20250908_083356'. +INFO [188770] Found input files for Dataset: pr, Amon, native6, ERA5, v1 +INFO [188770] Found input files for Dataset: pr, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +INFO [188770] PreprocessingTask pr_trends/pr created. +INFO [188770] Creating tasks for diagnostic psl_trends +INFO [188770] Creating diagnostic task psl_trends/plot +INFO [188770] Creating preprocessor task psl_trends/psl +INFO [188770] Creating preprocessor 'trend_psl' task for variable 'psl' +WARNING [188770] Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'psl_trends', + 'variable_group': 'psl', + 'dataset': 'ERA-5', + 'project': 'obs4MIPs', + 'mip': 'Amon', + 'short_name': 'psl', + 'alias': 'obs4MIPs', + 'frequency': 'mon', + 'long_name': 'Sea Level Pressure', + 'modeling_realm': [], + 'original_short_name': 'psl', + 'preprocessor': 'trend_psl', + 'recipe_dataset_index': 0, + 'reference_for_metric': "true'", + 'standard_name': 'air_pressure_at_mean_sea_level', + 'tier': 1, + 'timerange': '1980/2009', + 'units': 'Pa'} +session: 'recipe_20250908_083356'. +INFO [188770] Found input files for Dataset: psl, Amon, obs4MIPs, ERA-5, v20250220 +INFO [188770] Found input files for Dataset: psl, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +INFO [188770] PreprocessingTask psl_trends/psl created. +INFO [188770] Creating tasks for diagnostic ua200_trends +INFO [188770] Creating diagnostic task ua200_trends/plot +INFO [188770] Creating preprocessor task ua200_trends/ua +INFO [188770] Creating preprocessor 'trend_ua200' task for variable 'ua' +WARNING [188770] Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'ua200_trends', + 'variable_group': 'ua', + 'dataset': 'ERA-5', + 'project': 'obs4MIPs', + 'mip': 'Amon', + 'short_name': 'ua', + 'alias': 'obs4MIPs', + 'frequency': 'mon', + 'long_name': 'Eastward Wind', + 'modeling_realm': [], + 'original_short_name': 'ua', + 'preprocessor': 'trend_ua200', + 'recipe_dataset_index': 0, + 'reference_for_metric': "true'", + 'standard_name': 'eastward_wind', + 'tier': 1, + 'timerange': '1980/2009', + 'units': 'm s-1'} +session: 'recipe_20250908_083356'. +INFO [188770] Found input files for Dataset: ua, Amon, obs4MIPs, ERA-5, v20250220 +INFO [188770] Found input files for Dataset: ua, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +INFO [188770] PreprocessingTask ua200_trends/ua created. +INFO [188770] Creating tasks for diagnostic hus200_trends +INFO [188770] Creating diagnostic task hus200_trends/plot +INFO [188770] Creating preprocessor task hus200_trends/hus +INFO [188770] Creating preprocessor 'trend_hus200' task for variable 'hus' +WARNING [188770] Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'hus200_trends', + 'variable_group': 'hus', + 'dataset': 'ERA5', + 'project': 'native6', + 'mip': 'Amon', + 'short_name': 'hus', + 'alias': 'native6', + 'automatic_regrid': True, + 'family': 'E5', + 'frequency': 'mon', + 'grib_id': '133', + 'level': 'pl', + 'long_name': 'Specific Humidity', + 'modeling_realm': ['atmos'], + 'original_short_name': 'hus', + 'preprocessor': 'trend_hus200', + 'recipe_dataset_index': 0, + 'reference_for_metric': True, + 'standard_name': 'specific_humidity', + 'tier': 3, + 'timerange': '1980/2009', + 'tres': '1M', + 'type': 'reanaly', + 'typeid': '00', + 'units': '1', + 'version': 'v1'} +session: 'recipe_20250908_083356'. +INFO [188770] Found input files for Dataset: hus, Amon, native6, ERA5, v1 +INFO [188770] Found input files for Dataset: hus, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +INFO [188770] PreprocessingTask hus200_trends/hus created. +INFO [188770] These tasks will be executed: psl_trends/plot, psl_trends/psl, tas_trends/plot, pr_trends/plot, hus200_trends/hus, ua200_trends/ua, hus200_trends/plot, pr_trends/pr, tas_trends/tas, ua200_trends/plot +INFO [188770] Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250908_083356/run/recipe_filled.yml +INFO [188770] Using Dask distributed scheduler (address: tcp://127.0.0.1:41237, dashboard link: http://127.0.0.1:8787/status) +INFO [188770] Running 10 tasks using 10 processes +INFO [189235] Starting task pr_trends/pr in process [189235] +INFO [189233] Starting task tas_trends/tas in process [189233] +INFO [189239] Starting task ua200_trends/ua in process [189239] +INFO [189241] Starting task hus200_trends/hus in process [189241] +INFO [189237] Starting task psl_trends/psl in process [189237] +INFO [188770] Progress: 5 tasks running, 5 tasks waiting for ancestors, 0/10 done +INFO [189237] Computing and saving data for preprocessing task psl_trends/psl +WARNING [189237] /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 54.39 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +INFO [189237] psl_trends/psl [########################################] | 100% Completed | 7.38 s +INFO [189241] Computing and saving data for preprocessing task hus200_trends/hus +INFO [189237] Successfully completed task psl_trends/psl (priority 5) in 0:00:14.891503 +INFO [188770] Progress: 4 tasks running, 5 tasks waiting for ancestors, 1/10 done +INFO [189243] Starting task psl_trends/plot in process [189243] +INFO [189243] Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/psl_trends/plot/settings.yml'] +INFO [189243] Writing output to /executions/recipe_20250908_083356/work/psl_trends/plot +INFO [189243] Writing plots to /executions/recipe_20250908_083356/plots/psl_trends/plot +INFO [189243] Writing log to /executions/recipe_20250908_083356/run/psl_trends/plot/log.txt +INFO [189243] To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/psl_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/psl_trends/plot/settings.yml +INFO [188770] Progress: 5 tasks running, 4 tasks waiting for ancestors, 1/10 done +WARNING [189241] /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 101.64 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +INFO [189241] hus200_trends/hus [############ ] | 30% Completed | 10.23 s +INFO [189241] hus200_trends/hus [###################### ] | 55% Completed | 20.25 s +INFO [189241] hus200_trends/hus [###################################### ] | 96% Completed | 30.27 s +INFO [189243] Maximum memory used (estimate): 0.5 GB +INFO [189243] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +WARNING [189243] Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. +INFO [189243] Successfully completed task psl_trends/plot (priority 4) in 0:00:34.146770 +INFO [188770] Progress: 4 tasks running, 4 tasks waiting for ancestors, 2/10 done +INFO [189241] hus200_trends/hus [########################################] | 100% Completed | 34.27 s +INFO [189239] Computing and saving data for preprocessing task ua200_trends/ua +INFO [189241] Successfully completed task hus200_trends/hus (priority 9) in 0:00:49.928863 +WARNING [189239] /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 54.39 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +INFO [188770] Progress: 3 tasks running, 4 tasks waiting for ancestors, 3/10 done +INFO [188770] Progress: 4 tasks running, 3 tasks waiting for ancestors, 3/10 done +INFO [189245] Starting task hus200_trends/plot in process [189245] +INFO [189245] Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/hus200_trends/plot/settings.yml'] +INFO [189245] Writing output to /executions/recipe_20250908_083356/work/hus200_trends/plot +INFO [189245] Writing plots to /executions/recipe_20250908_083356/plots/hus200_trends/plot +INFO [189245] Writing log to /executions/recipe_20250908_083356/run/hus200_trends/plot/log.txt +INFO [189245] To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/hus200_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/hus200_trends/plot/settings.yml +INFO [189239] ua200_trends/ua [########################################] | 100% Completed | 2.59 s +INFO [189233] Computing and saving data for preprocessing task tas_trends/tas +INFO [189239] Successfully completed task ua200_trends/ua (priority 7) in 0:00:52.612125 +WARNING [189233] /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 54.65 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +INFO [188770] Progress: 3 tasks running, 3 tasks waiting for ancestors, 4/10 done +INFO [189247] Starting task ua200_trends/plot in process [189247] +INFO [189247] Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/ua200_trends/plot/settings.yml'] +INFO [189247] Writing output to /executions/recipe_20250908_083356/work/ua200_trends/plot +INFO [189247] Writing plots to /executions/recipe_20250908_083356/plots/ua200_trends/plot +INFO [189247] Writing log to /executions/recipe_20250908_083356/run/ua200_trends/plot/log.txt +INFO [189247] To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/ua200_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/ua200_trends/plot/settings.yml +INFO [188770] Progress: 4 tasks running, 2 tasks waiting for ancestors, 4/10 done +INFO [189233] tas_trends/tas [########################################] | 100% Completed | 4.25 s +INFO [189235] Computing and saving data for preprocessing task pr_trends/pr +INFO [189233] Successfully completed task tas_trends/tas (priority 1) in 0:00:56.998586 +INFO [188770] Progress: 3 tasks running, 2 tasks waiting for ancestors, 5/10 done +INFO [189249] Starting task tas_trends/plot in process [189249] +INFO [189249] Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/tas_trends/plot/settings.yml'] +INFO [189249] Writing output to /executions/recipe_20250908_083356/work/tas_trends/plot +INFO [189249] Writing plots to /executions/recipe_20250908_083356/plots/tas_trends/plot +INFO [189249] Writing log to /executions/recipe_20250908_083356/run/tas_trends/plot/log.txt +INFO [189249] To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/tas_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/tas_trends/plot/settings.yml +INFO [188770] Progress: 4 tasks running, 1 tasks waiting for ancestors, 5/10 done +WARNING [189235] /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 102.23 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +INFO [189245] Maximum memory used (estimate): 0.5 GB +INFO [189245] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +INFO [189245] Successfully completed task hus200_trends/plot (priority 8) in 0:00:13.795145 +INFO [188770] Progress: 3 tasks running, 1 tasks waiting for ancestors, 6/10 done +INFO [189235] pr_trends/pr [################## ] | 46% Completed | 10.87 s +INFO [189235] pr_trends/pr [#################################### ] | 92% Completed | 21.00 s +INFO [189249] Maximum memory used (estimate): 0.4 GB +INFO [189249] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +WARNING [189249] Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. +INFO [189235] pr_trends/pr [########################################] | 100% Completed | 26.01 s +INFO [189235] Successfully completed task pr_trends/pr (priority 3) in 0:01:23.846871 +INFO [189249] Successfully completed task tas_trends/plot (priority 0) in 0:00:26.789789 +INFO [188770] Progress: 2 tasks running, 1 tasks waiting for ancestors, 7/10 done +INFO [189251] Starting task pr_trends/plot in process [189251] +INFO [189251] Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/pr_trends/plot/settings.yml'] +INFO [189251] Writing output to /executions/recipe_20250908_083356/work/pr_trends/plot +INFO [189251] Writing plots to /executions/recipe_20250908_083356/plots/pr_trends/plot +INFO [189251] Writing log to /executions/recipe_20250908_083356/run/pr_trends/plot/log.txt +INFO [189251] To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/pr_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/pr_trends/plot/settings.yml +INFO [188770] Progress: 2 tasks running, 0 tasks waiting for ancestors, 8/10 done +INFO [189247] Maximum memory used (estimate): 0.5 GB +INFO [189247] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +WARNING [189247] Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. +INFO [189247] Successfully completed task ua200_trends/plot (priority 6) in 0:00:32.997609 +INFO [188770] Progress: 1 tasks running, 0 tasks waiting for ancestors, 9/10 done +INFO [189251] Maximum memory used (estimate): 0.5 GB +INFO [189251] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +INFO [189251] Successfully completed task pr_trends/plot (priority 2) in 0:00:11.553297 +INFO [188770] Progress: 0 tasks running, 0 tasks waiting for ancestors, 10/10 done +INFO [188770] Successfully completed all tasks. +INFO [188770] Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250908_083356/run/recipe_filled.yml +INFO [188770] Wrote recipe output to: +file:///executions/recipe_20250908_083356/index.html +INFO [188770] It looks like you are connected to a remote machine via SSH. To show the output html file, you can try the following command on your local machine: +server=136.172.124.4 && port=31415 && ssh -t -L ${port}:localhost:${port} b381141@${server} /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python -m http.server ${port} -d /executions/recipe_20250908_083356 +Then visit http://localhost:31415 in your browser +INFO [188770] If the port 31415 is already in use, you can replace it with any other free one (e.g., 12789). If you are connected through a jump host, replace the server IP address 136.172.124.4 with your SSH server name +INFO [188770] Ending the Earth System Model Evaluation Tool at time: 2025-09-08 08:36:24 UTC +INFO [188770] Time for running the recipe was: 0:01:58.422936 +INFO [188770] Maximum memory used (estimate): 105.1 GB +INFO [188770] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +INFO [188770] Removing `preproc` directory containing preprocessed data +INFO [188770] If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration +INFO [188770] Run was successful diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/main_log_debug.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/main_log_debug.txt new file mode 100644 index 000000000..87ab54b58 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/main_log_debug.txt @@ -0,0 +1,42437 @@ +2025-09-08 08:33:56,135 UTC [188770] INFO esmvalcore._main:576 +______________________________________________________________________ + _____ ____ __ ____ __ _ _____ _ + | ____/ ___|| \/ \ \ / /_ _| |_ _|__ ___ | | + | _| \___ \| |\/| |\ \ / / _` | | | |/ _ \ / _ \| | + | |___ ___) | | | | \ V / (_| | | | | (_) | (_) | | + |_____|____/|_| |_| \_/ \__,_|_| |_|\___/ \___/|_| +______________________________________________________________________ + +Earth System Model Evaluation Tool + +A community tool for the evaluation of Earth system models. + +https://esmvaltool.org + +The Earth System Model Evaluation Tool (ESMValTool) is a community +diagnostics and performance metrics tool for the evaluation of Earth +System Models (ESMs) that allows for routine comparison of single or +multiple models, either against predecessor versions or against +observations. + +Tutorial: https://tutorial.esmvaltool.org +Documentation: https://docs.esmvaltool.org +Contact: esmvaltool-dev@listserv.dfn.de + +If you find this software useful for your research, please cite it using +https://doi.org/10.5281/zenodo.3387139 for ESMValCore or +https://doi.org/10.5281/zenodo.3401363 for ESMValTool or +any of the reference papers listed at https://esmvaltool.org/references/. + +Have fun! + +2025-09-08 08:33:56,136 UTC [188770] INFO esmvalcore._main:577 Package versions +2025-09-08 08:33:56,136 UTC [188770] INFO esmvalcore._main:578 ---------------- +2025-09-08 08:33:56,136 UTC [188770] INFO esmvalcore._main:579 ESMValCore: 2.12.0 +2025-09-08 08:33:56,136 UTC [188770] INFO esmvalcore._main:581 ESMValTool: 2.13.0.dev148+g2c438d0e0 +2025-09-08 08:33:56,136 UTC [188770] INFO esmvalcore._main:582 ---------------- +2025-09-08 08:33:56,136 UTC [188770] INFO esmvalcore._main:583 Reading configuration files from: +/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config/configurations/defaults (defaults) +/home/b/b381141/.config/esmvaltool (default user configuration directory) +/config (command line argument) +2025-09-08 08:33:56,136 UTC [188770] INFO esmvalcore._main:587 Writing program log files to: +/executions/recipe_20250908_083356/run/main_log.txt +/executions/recipe_20250908_083356/run/main_log_debug.txt +/executions/recipe_20250908_083356/run/cmor_log.txt +2025-09-08 08:34:18,134 UTC [188770] WARNING py.warnings:109 /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 + warnings.warn("ESMF installation version {}, ESMPy version {}".format( + +2025-09-08 08:34:26,527 UTC [188770] INFO esmvalcore._main:93 Starting the Earth System Model Evaluation Tool at time: 2025-09-08 08:34:26 UTC +2025-09-08 08:34:26,528 UTC [188770] INFO esmvalcore._main:98 ---------------------------------------------------------------------- +2025-09-08 08:34:26,528 UTC [188770] INFO esmvalcore._main:99 RECIPE = /recipe.yml +2025-09-08 08:34:26,528 UTC [188770] INFO esmvalcore._main:100 RUNDIR = /executions/recipe_20250908_083356/run +2025-09-08 08:34:26,528 UTC [188770] INFO esmvalcore._main:101 WORKDIR = /executions/recipe_20250908_083356/work +2025-09-08 08:34:26,528 UTC [188770] INFO esmvalcore._main:102 PREPROCDIR = /executions/recipe_20250908_083356/preproc +2025-09-08 08:34:26,528 UTC [188770] INFO esmvalcore._main:103 PLOTDIR = /executions/recipe_20250908_083356/plots +2025-09-08 08:34:26,528 UTC [188770] INFO esmvalcore._main:104 ---------------------------------------------------------------------- +2025-09-08 08:34:26,528 UTC [188770] INFO esmvalcore._main:107 Running tasks using at most 10 processes +2025-09-08 08:34:26,529 UTC [188770] INFO esmvalcore._main:109 If your system hangs during execution, it may not have enough memory for keeping this number of tasks in memory. +2025-09-08 08:34:26,529 UTC [188770] INFO esmvalcore._main:113 If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. +2025-09-08 08:34:26,529 UTC [188770] DEBUG esmvalcore._recipe.check:67 Checking recipe against schema /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/_recipe/recipe_schema.yml +2025-09-08 08:34:26,758 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable tas in diagnostic tas_trends +2025-09-08 08:34:26,762 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_*_fx_areacella[_.]*nc')] +2025-09-08 08:34:26,768 UTC [188770] INFO esmvalcore.dataset:332 For Dataset: tas, Amon, OBS, HadCRUT5, 5.0.1.0-analysis, supplementaries: areacella, *, *: ignoring supplementary variable 'areacella', unable to expand wildcards 'mip', 'version'. +2025-09-08 08:34:26,768 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, OBS, HadCRUT5, 5.0.1.0-analysis +2025-09-08 08:34:26,770 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/obs4MIPs/ERA-5/*/areacella_*.nc')] +2025-09-08 08:34:26,770 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/ERA-5/*/areacella_*.nc')] +2025-09-08 08:34:26,772 UTC [188770] INFO esmvalcore.dataset:332 For Dataset: tas, Amon, obs4MIPs, ERA-5, supplementaries: areacella: ignoring supplementary variable 'areacella', unable to expand wildcards 'institute'. +2025-09-08 08:34:26,772 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, obs4MIPs, ERA-5 +2025-09-08 08:34:26,774 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-08 08:34:26,775 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacella, fx +2025-09-08 08:34:26,776 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable pr in diagnostic pr_trends +2025-09-08 08:34:26,776 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/obs4MIPs/GPCP-V2.3/*/areacella_*.nc')] +2025-09-08 08:34:26,776 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/*/areacella_*.nc')] +2025-09-08 08:34:26,782 UTC [188770] INFO esmvalcore.dataset:332 For Dataset: pr, Amon, obs4MIPs, GPCP-V2.3, supplementaries: areacella: ignoring supplementary variable 'areacella', unable to expand wildcards 'institute'. +2025-09-08 08:34:26,782 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: pr, Amon, obs4MIPs, GPCP-V2.3 +2025-09-08 08:34:26,784 UTC [188770] DEBUG esmvalcore.config._config:58 Loading extra facets from /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config/extra_facets/native6-era5.yml +2025-09-08 08:34:26,821 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/*/fx/areacella/*.nc')] +2025-09-08 08:34:26,823 UTC [188770] INFO esmvalcore.dataset:332 For Dataset: pr, Amon, native6, ERA5, v1, supplementaries: areacella, *, *: ignoring supplementary variable 'areacella', unable to expand wildcards 'mip', 'version'. +2025-09-08 08:34:26,823 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: pr, Amon, native6, ERA5, v1 +2025-09-08 08:34:26,823 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-08 08:34:26,824 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: pr, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacella, fx +2025-09-08 08:34:26,824 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable psl in diagnostic psl_trends +2025-09-08 08:34:26,824 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/obs4MIPs/ERA-5/*/areacella_*.nc')] +2025-09-08 08:34:26,824 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/ERA-5/*/areacella_*.nc')] +2025-09-08 08:34:26,825 UTC [188770] INFO esmvalcore.dataset:332 For Dataset: psl, Amon, obs4MIPs, ERA-5, supplementaries: areacella: ignoring supplementary variable 'areacella', unable to expand wildcards 'institute'. +2025-09-08 08:34:26,825 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: psl, Amon, obs4MIPs, ERA-5 +2025-09-08 08:34:26,825 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-08 08:34:26,826 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: psl, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacella, fx +2025-09-08 08:34:26,826 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable ua in diagnostic ua200_trends +2025-09-08 08:34:26,826 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/obs4MIPs/ERA-5/*/areacella_*.nc')] +2025-09-08 08:34:26,826 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/ERA-5/*/areacella_*.nc')] +2025-09-08 08:34:26,827 UTC [188770] INFO esmvalcore.dataset:332 For Dataset: ua, Amon, obs4MIPs, ERA-5, supplementaries: areacella: ignoring supplementary variable 'areacella', unable to expand wildcards 'institute'. +2025-09-08 08:34:26,827 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: ua, Amon, obs4MIPs, ERA-5 +2025-09-08 08:34:26,827 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-08 08:34:26,828 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: ua, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacella, fx +2025-09-08 08:34:26,828 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable hus in diagnostic hus200_trends +2025-09-08 08:34:26,828 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/*/fx/areacella/*.nc')] +2025-09-08 08:34:26,829 UTC [188770] INFO esmvalcore.dataset:332 For Dataset: hus, Amon, native6, ERA5, v1, supplementaries: areacella, *, *: ignoring supplementary variable 'areacella', unable to expand wildcards 'mip', 'version'. +2025-09-08 08:34:26,829 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: hus, Amon, native6, ERA5, v1 +2025-09-08 08:34:26,829 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-09-08 08:34:26,830 UTC [188770] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: hus, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacella, fx +2025-09-08 08:34:26,830 UTC [188770] DEBUG esmvalcore._recipe.recipe:879 Retrieving diagnostics from recipe +2025-09-08 08:34:26,830 UTC [188770] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic tas_trends +2025-09-08 08:34:26,830 UTC [188770] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic pr_trends +2025-09-08 08:34:26,830 UTC [188770] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic psl_trends +2025-09-08 08:34:26,830 UTC [188770] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic ua200_trends +2025-09-08 08:34:26,831 UTC [188770] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic hus200_trends +2025-09-08 08:34:26,831 UTC [188770] INFO esmvalcore._recipe.recipe:1119 Creating tasks from recipe +2025-09-08 08:34:26,831 UTC [188770] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic tas_trends +2025-09-08 08:34:26,831 UTC [188770] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task tas_trends/plot +2025-09-08 08:34:26,831 UTC [188770] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. +2025-09-08 08:34:26,846 UTC [188770] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task tas_trends/tas +2025-09-08 08:34:26,846 UTC [188770] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'trend_tas' task for variable 'tas' +2025-09-08 08:34:26,846 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:26,847 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:26,848 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:26,852 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas[_.]*nc')] +2025-09-08 08:34:26,854 UTC [188770] WARNING esmvalcore._recipe.check:232 Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'tas_trends', + 'variable_group': 'tas', + 'dataset': 'HadCRUT5', + 'project': 'OBS', + 'mip': 'Amon', + 'short_name': 'tas', + 'alias': 'OBS', + 'frequency': 'mon', + 'long_name': 'Near-Surface Air Temperature', + 'modeling_realm': ['atmos'], + 'original_short_name': 'tas', + 'preprocessor': 'trend_tas', + 'recipe_dataset_index': 0, + 'standard_name': 'air_temperature', + 'tier': 2, + 'timerange': '1980/2009', + 'type': 'ground', + 'units': 'K', + 'version': '5.0.1.0-analysis'} +session: 'recipe_20250908_083356'. +2025-09-08 08:34:26,966 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset OBS: + /home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc +2025-09-08 08:34:26,966 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, OBS, HadCRUT5, 5.0.1.0-analysis +2025-09-08 08:34:26,966 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:26,966 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:26,967 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:26,969 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/obs4MIPs/ERA-5/*/tas_*.nc')] +2025-09-08 08:34:26,970 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/ERA-5/*/tas_*.nc')] +2025-09-08 08:34:26,971 UTC [188770] WARNING esmvalcore._recipe.check:232 Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'tas_trends', + 'variable_group': 'tas', + 'dataset': 'ERA-5', + 'project': 'obs4MIPs', + 'mip': 'Amon', + 'short_name': 'tas', + 'alias': 'obs4MIPs', + 'frequency': 'mon', + 'long_name': 'Near-Surface Air Temperature', + 'modeling_realm': [], + 'original_short_name': 'tas', + 'preprocessor': 'trend_tas', + 'recipe_dataset_index': 1, + 'reference_for_metric': "true'", + 'standard_name': 'air_temperature', + 'tier': 1, + 'timerange': '1980/2009', + 'units': 'K'} +session: 'recipe_20250908_083356'. +2025-09-08 08:34:26,972 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset obs4MIPs: + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc + /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc +2025-09-08 08:34:26,972 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, obs4MIPs, ERA-5, v20250220 +2025-09-08 08:34:26,972 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:26,972 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:26,973 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:26,974 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/*/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:26,975 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:26,976 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset CMIP6: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +with files for supplementary variable areacella: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:26,976 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +2025-09-08 08:34:26,977 UTC [188770] INFO esmvalcore._recipe.recipe:766 PreprocessingTask tas_trends/tas created. +2025-09-08 08:34:26,977 UTC [188770] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask tas_trends/tas will create the files: +/executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc +/executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc +/executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc +2025-09-08 08:34:26,977 UTC [188770] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic pr_trends +2025-09-08 08:34:26,977 UTC [188770] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task pr_trends/plot +2025-09-08 08:34:26,978 UTC [188770] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. +2025-09-08 08:34:26,978 UTC [188770] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task pr_trends/pr +2025-09-08 08:34:26,978 UTC [188770] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'trend_pr' task for variable 'pr' +2025-09-08 08:34:26,978 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:26,978 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:26,978 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:26,980 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/obs4MIPs/GPCP-V2.3/*/pr_*.nc')] +2025-09-08 08:34:26,980 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/*/pr_*.nc')] +2025-09-08 08:34:26,982 UTC [188770] WARNING esmvalcore._recipe.check:232 Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'pr_trends', + 'variable_group': 'pr', + 'dataset': 'GPCP-V2.3', + 'project': 'obs4MIPs', + 'mip': 'Amon', + 'short_name': 'pr', + 'alias': 'obs4MIPs', + 'frequency': 'mon', + 'long_name': 'Precipitation', + 'modeling_realm': [], + 'original_short_name': 'pr', + 'preprocessor': 'trend_pr', + 'recipe_dataset_index': 0, + 'reference_for_metric': True, + 'standard_name': 'precipitation_flux', + 'tier': 1, + 'timerange': '1980/2009', + 'units': 'kg m-2 s-1'} +session: 'recipe_20250908_083356'. +2025-09-08 08:34:27,001 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable pr of dataset obs4MIPs: + /home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc +2025-09-08 08:34:27,001 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: pr, Amon, obs4MIPs, GPCP-V2.3, v20180519 +2025-09-08 08:34:27,002 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:27,002 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:27,003 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:27,005 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/*.nc')] +2025-09-08 08:34:27,012 UTC [188770] WARNING esmvalcore._recipe.check:232 Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'pr_trends', + 'variable_group': 'pr', + 'dataset': 'ERA5', + 'project': 'native6', + 'mip': 'Amon', + 'short_name': 'pr', + 'alias': 'native6', + 'automatic_regrid': True, + 'family': 'E5', + 'frequency': 'mon', + 'long_name': 'Precipitation', + 'modeling_realm': ['atmos'], + 'original_short_name': 'pr', + 'preprocessor': 'trend_pr', + 'recipe_dataset_index': 1, + 'reference_for_metric': True, + 'standard_name': 'precipitation_flux', + 'tier': 3, + 'timerange': '1980/2009', + 'tres': '1M', + 'type': 'reanaly', + 'typeid': '00', + 'units': 'kg m-2 s-1', + 'version': 'v1'} +session: 'recipe_20250908_083356'. +2025-09-08 08:34:27,780 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable pr of dataset native6: + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc +2025-09-08 08:34:27,780 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: pr, Amon, native6, ERA5, v1 +2025-09-08 08:34:27,781 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:27,781 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:27,782 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:27,784 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/*/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:27,784 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:27,785 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable pr of dataset CMIP6: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +with files for supplementary variable areacella: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:27,785 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: pr, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +2025-09-08 08:34:27,786 UTC [188770] INFO esmvalcore._recipe.recipe:766 PreprocessingTask pr_trends/pr created. +2025-09-08 08:34:27,786 UTC [188770] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask pr_trends/pr will create the files: +/executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc +/executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc +/executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc +2025-09-08 08:34:27,786 UTC [188770] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic psl_trends +2025-09-08 08:34:27,787 UTC [188770] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task psl_trends/plot +2025-09-08 08:34:27,787 UTC [188770] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. +2025-09-08 08:34:27,787 UTC [188770] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task psl_trends/psl +2025-09-08 08:34:27,787 UTC [188770] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'trend_psl' task for variable 'psl' +2025-09-08 08:34:27,787 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:27,787 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:27,788 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:27,789 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/obs4MIPs/ERA-5/*/psl_*.nc')] +2025-09-08 08:34:27,791 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/ERA-5/*/psl_*.nc')] +2025-09-08 08:34:27,791 UTC [188770] WARNING esmvalcore._recipe.check:232 Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'psl_trends', + 'variable_group': 'psl', + 'dataset': 'ERA-5', + 'project': 'obs4MIPs', + 'mip': 'Amon', + 'short_name': 'psl', + 'alias': 'obs4MIPs', + 'frequency': 'mon', + 'long_name': 'Sea Level Pressure', + 'modeling_realm': [], + 'original_short_name': 'psl', + 'preprocessor': 'trend_psl', + 'recipe_dataset_index': 0, + 'reference_for_metric': "true'", + 'standard_name': 'air_pressure_at_mean_sea_level', + 'tier': 1, + 'timerange': '1980/2009', + 'units': 'Pa'} +session: 'recipe_20250908_083356'. +2025-09-08 08:34:27,793 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable psl of dataset obs4MIPs: + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc + /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc +2025-09-08 08:34:27,793 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: psl, Amon, obs4MIPs, ERA-5, v20250220 +2025-09-08 08:34:27,793 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:27,793 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:27,794 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:27,795 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/*/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:27,796 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:27,797 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable psl of dataset CMIP6: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc +with files for supplementary variable areacella: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:27,797 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: psl, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +2025-09-08 08:34:27,798 UTC [188770] INFO esmvalcore._recipe.recipe:766 PreprocessingTask psl_trends/psl created. +2025-09-08 08:34:27,798 UTC [188770] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask psl_trends/psl will create the files: +/executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc +/executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc +2025-09-08 08:34:27,798 UTC [188770] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic ua200_trends +2025-09-08 08:34:27,798 UTC [188770] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task ua200_trends/plot +2025-09-08 08:34:27,798 UTC [188770] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. +2025-09-08 08:34:27,798 UTC [188770] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task ua200_trends/ua +2025-09-08 08:34:27,798 UTC [188770] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'trend_ua200' task for variable 'ua' +2025-09-08 08:34:27,799 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:27,799 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:27,799 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:27,801 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/obs4MIPs/ERA-5/*/ua_*.nc')] +2025-09-08 08:34:27,803 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/ERA-5/*/ua_*.nc')] +2025-09-08 08:34:27,803 UTC [188770] WARNING esmvalcore._recipe.check:232 Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'ua200_trends', + 'variable_group': 'ua', + 'dataset': 'ERA-5', + 'project': 'obs4MIPs', + 'mip': 'Amon', + 'short_name': 'ua', + 'alias': 'obs4MIPs', + 'frequency': 'mon', + 'long_name': 'Eastward Wind', + 'modeling_realm': [], + 'original_short_name': 'ua', + 'preprocessor': 'trend_ua200', + 'recipe_dataset_index': 0, + 'reference_for_metric': "true'", + 'standard_name': 'eastward_wind', + 'tier': 1, + 'timerange': '1980/2009', + 'units': 'm s-1'} +session: 'recipe_20250908_083356'. +2025-09-08 08:34:27,804 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable ua of dataset obs4MIPs: + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc + /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc +2025-09-08 08:34:27,804 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: ua, Amon, obs4MIPs, ERA-5, v20250220 +2025-09-08 08:34:27,805 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:27,805 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:27,805 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:27,807 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/*/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:27,807 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:27,808 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable ua of dataset CMIP6: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc +with files for supplementary variable areacella: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:27,808 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: ua, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +2025-09-08 08:34:27,809 UTC [188770] INFO esmvalcore._recipe.recipe:766 PreprocessingTask ua200_trends/ua created. +2025-09-08 08:34:27,809 UTC [188770] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask ua200_trends/ua will create the files: +/executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc +/executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc +2025-09-08 08:34:27,809 UTC [188770] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic hus200_trends +2025-09-08 08:34:27,809 UTC [188770] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task hus200_trends/plot +2025-09-08 08:34:27,809 UTC [188770] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. +2025-09-08 08:34:27,810 UTC [188770] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task hus200_trends/hus +2025-09-08 08:34:27,810 UTC [188770] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'trend_hus200' task for variable 'hus' +2025-09-08 08:34:27,810 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:27,810 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:27,810 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:27,812 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/*.nc')] +2025-09-08 08:34:27,816 UTC [188770] WARNING esmvalcore._recipe.check:232 Preprocessor function area_statistics works best when at least one supplementary variable of ['areacella', 'areacello'] is defined in the recipe for Dataset: +{'diagnostic': 'hus200_trends', + 'variable_group': 'hus', + 'dataset': 'ERA5', + 'project': 'native6', + 'mip': 'Amon', + 'short_name': 'hus', + 'alias': 'native6', + 'automatic_regrid': True, + 'family': 'E5', + 'frequency': 'mon', + 'grib_id': '133', + 'level': 'pl', + 'long_name': 'Specific Humidity', + 'modeling_realm': ['atmos'], + 'original_short_name': 'hus', + 'preprocessor': 'trend_hus200', + 'recipe_dataset_index': 0, + 'reference_for_metric': True, + 'standard_name': 'specific_humidity', + 'tier': 3, + 'timerange': '1980/2009', + 'tres': '1M', + 'type': 'reanaly', + 'typeid': '00', + 'units': '1', + 'version': 'v1'} +session: 'recipe_20250908_083356'. +2025-09-08 08:34:28,663 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable hus of dataset native6: + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc + /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc +2025-09-08 08:34:28,663 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: hus, Amon, native6, ERA5, v1 +2025-09-08 08:34:28,664 UTC [188770] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile ar6 +2025-09-08 08:34:28,664 UTC [188770] DEBUG esmvalcore.preprocessor._area:718 extract_shape: Looking for shapefile /home/b/b381141/auxiliary_data2/ar6 +2025-09-08 08:34:28,665 UTC [188770] DEBUG esmvalcore.preprocessor._area:724 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6 +2025-09-08 08:34:28,667 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/*/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:28,667 UTC [188770] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/*/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-09-08 08:34:28,668 UTC [188770] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable hus of dataset CMIP6: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc +with files for supplementary variable areacella: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:28,668 UTC [188770] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: hus, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +2025-09-08 08:34:28,670 UTC [188770] INFO esmvalcore._recipe.recipe:766 PreprocessingTask hus200_trends/hus created. +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask hus200_trends/hus will create the files: +/executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc +/executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic tas_trends script plot +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:975 Pattern tas_trends/tas matches ['tas_trends/tas'] +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic pr_trends script plot +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:975 Pattern pr_trends/pr matches ['pr_trends/pr'] +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic psl_trends script plot +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:975 Pattern psl_trends/psl matches ['psl_trends/psl'] +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic ua200_trends script plot +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:975 Pattern ua200_trends/ua matches ['ua200_trends/ua'] +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic hus200_trends script plot +2025-09-08 08:34:28,670 UTC [188770] DEBUG esmvalcore._recipe.recipe:975 Pattern hus200_trends/hus matches ['hus200_trends/hus'] +2025-09-08 08:34:28,671 UTC [188770] INFO esmvalcore._recipe.recipe:1171 These tasks will be executed: psl_trends/plot, psl_trends/psl, tas_trends/plot, pr_trends/plot, hus200_trends/hus, ua200_trends/ua, hus200_trends/plot, pr_trends/pr, tas_trends/tas, ua200_trends/plot +2025-09-08 08:34:28,674 UTC [188770] DEBUG esmvalcore._main:133 Recipe summary: +DiagnosticTask: psl_trends/plot +script: seaborn_diag.py +settings: +{'add_aux_coords': True, + 'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'facets_as_columns': ['dataset'], + 'legend_title': 'Data', + 'log_level': 'info', + 'output_file_type': 'png', + 'plot_dir': '/executions/recipe_20250908_083356/plots/psl_trends/plot', + 'plot_object_methods': {'set_xlabel': 'region', + 'set_ylabel': 'psl trend [m-1 kg s-2 yr-1]'}, + 'profile_diagnostic': False, + 'recipe': PosixPath('recipe.yml'), + 'reset_index': True, + 'run_dir': '/executions/recipe_20250908_083356/run/psl_trends/plot', + 'script': 'plot', + 'seaborn_func': 'barplot', + 'seaborn_kwargs': {'hue': 'dataset', 'x': 'shape_id', 'y': 'psl'}, + 'seaborn_settings': {'rc': {'figure.figsize': [28, 6]}, 'style': 'ticks'}, + 'suptitle': 'Trend in Sea Level Pressure', + 'version': '2.12.0', + 'work_dir': '/executions/recipe_20250908_083356/work/psl_trends/plot', + 'write_netcdf': True} +ancestors: + PreprocessingTask: psl_trends/psl + order: ['extract_shape', 'area_statistics', 'linear_trend', 'convert_units', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc + input files: [LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'm-1 kg s-2 yr-1'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc')}} + + PreprocessorFile: /executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'm-1 kg s-2 yr-1'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc')}} + ancestors: + None + + +DiagnosticTask: tas_trends/plot +script: seaborn_diag.py +settings: +{'add_aux_coords': True, + 'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'facets_as_columns': ['dataset'], + 'legend_title': 'Data', + 'log_level': 'info', + 'output_file_type': 'png', + 'plot_dir': '/executions/recipe_20250908_083356/plots/tas_trends/plot', + 'plot_object_methods': {'set_xlabel': 'region', + 'set_ylabel': 'tas trend [K/yr]'}, + 'profile_diagnostic': False, + 'recipe': PosixPath('recipe.yml'), + 'reset_index': True, + 'run_dir': '/executions/recipe_20250908_083356/run/tas_trends/plot', + 'script': 'plot', + 'seaborn_func': 'barplot', + 'seaborn_kwargs': {'hue': 'dataset', 'x': 'shape_id', 'y': 'tas'}, + 'seaborn_settings': {'rc': {'figure.figsize': [28, 6]}, 'style': 'ticks'}, + 'suptitle': 'Trend in Near-Surface Air Temperature', + 'version': '2.12.0', + 'work_dir': '/executions/recipe_20250908_083356/work/tas_trends/plot', + 'write_netcdf': True} +ancestors: + PreprocessingTask: tas_trends/tas + order: ['extract_shape', 'area_statistics', 'linear_trend', 'convert_units', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc + input files: [LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'K yr-1'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc')}} + + PreprocessorFile: /executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'K yr-1'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc')}} + + PreprocessorFile: /executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc + input files: [LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'K yr-1'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc')}} + ancestors: + None + + +DiagnosticTask: pr_trends/plot +script: seaborn_diag.py +settings: +{'add_aux_coords': True, + 'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'facets_as_columns': ['dataset'], + 'legend_title': 'Data', + 'log_level': 'info', + 'output_file_type': 'png', + 'plot_dir': '/executions/recipe_20250908_083356/plots/pr_trends/plot', + 'plot_object_methods': {'set_xlabel': 'region', + 'set_ylabel': 'pr trend [mm kg m-3 day-1 yr-1]'}, + 'profile_diagnostic': False, + 'recipe': PosixPath('recipe.yml'), + 'reset_index': True, + 'run_dir': '/executions/recipe_20250908_083356/run/pr_trends/plot', + 'script': 'plot', + 'seaborn_func': 'barplot', + 'seaborn_kwargs': {'hue': 'dataset', 'x': 'shape_id', 'y': 'pr'}, + 'seaborn_settings': {'rc': {'figure.figsize': [28, 6]}, 'style': 'ticks'}, + 'suptitle': 'Trend in Precipitation', + 'version': '2.12.0', + 'work_dir': '/executions/recipe_20250908_083356/work/pr_trends/plot', + 'write_netcdf': True} +ancestors: + PreprocessingTask: pr_trends/pr + order: ['extract_shape', 'area_statistics', 'linear_trend', 'convert_units', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc + input files: [LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'mm kg m-3 day-1 yr-1'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc')}} + + PreprocessorFile: /executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc + input files: [LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'mm kg m-3 day-1 yr-1'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc')}} + + PreprocessorFile: /executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'mm kg m-3 day-1 yr-1'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc')}} + ancestors: + None + + +DiagnosticTask: hus200_trends/plot +script: seaborn_diag.py +settings: +{'add_aux_coords': True, + 'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'facets_as_columns': ['dataset'], + 'log_level': 'info', + 'output_file_type': 'png', + 'plot_dir': '/executions/recipe_20250908_083356/plots/hus200_trends/plot', + 'plot_object_methods': {'set_xlabel': 'region', + 'set_ylabel': 'hus trend [yr-1]'}, + 'profile_diagnostic': False, + 'recipe': PosixPath('recipe.yml'), + 'reset_index': True, + 'run_dir': '/executions/recipe_20250908_083356/run/hus200_trends/plot', + 'script': 'plot', + 'seaborn_func': 'barplot', + 'seaborn_kwargs': {'hue': 'dataset', 'x': 'shape_id', 'y': 'hus'}, + 'seaborn_settings': {'rc': {'figure.figsize': [28, 6]}, 'style': 'ticks'}, + 'suptitle': 'Trend in Specific Humidity at 200 hPa', + 'version': '2.12.0', + 'work_dir': '/executions/recipe_20250908_083356/work/hus200_trends/plot', + 'write_netcdf': True} +ancestors: + PreprocessingTask: hus200_trends/hus + order: ['extract_levels', 'extract_shape', 'area_statistics', 'linear_trend', 'convert_units', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc + input files: [LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'year-1'}, + 'extract_levels': {'coordinate': 'air_pressure', + 'levels': 20000, + 'scheme': 'linear'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc')}} + + PreprocessorFile: /executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'year-1'}, + 'extract_levels': {'coordinate': 'air_pressure', + 'levels': 20000, + 'scheme': 'linear'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc')}} + ancestors: + None + + +DiagnosticTask: ua200_trends/plot +script: seaborn_diag.py +settings: +{'add_aux_coords': True, + 'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'facets_as_columns': ['dataset'], + 'log_level': 'info', + 'output_file_type': 'png', + 'plot_dir': '/executions/recipe_20250908_083356/plots/ua200_trends/plot', + 'plot_object_methods': {'set_xlabel': 'region', + 'set_ylabel': 'ua trend [m s-1 yr-1]'}, + 'profile_diagnostic': False, + 'recipe': PosixPath('recipe.yml'), + 'reset_index': True, + 'run_dir': '/executions/recipe_20250908_083356/run/ua200_trends/plot', + 'script': 'plot', + 'seaborn_func': 'barplot', + 'seaborn_kwargs': {'hue': 'dataset', 'x': 'shape_id', 'y': 'ua'}, + 'seaborn_settings': {'rc': {'figure.figsize': [28, 6]}, 'style': 'ticks'}, + 'suptitle': 'Trend in Zonal Wind at 200 hPa', + 'version': '2.12.0', + 'work_dir': '/executions/recipe_20250908_083356/work/ua200_trends/plot', + 'write_netcdf': True} +ancestors: + PreprocessingTask: ua200_trends/ua + order: ['extract_levels', 'extract_shape', 'area_statistics', 'linear_trend', 'convert_units', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'm s-1 yr-1'}, + 'extract_levels': {'coordinate': 'air_pressure', + 'levels': 20000, + 'scheme': 'linear'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc')}} + + PreprocessorFile: /executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc + input files: [LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] + settings: {'area_statistics': {'operator': 'mean'}, + 'convert_units': {'units': 'm s-1 yr-1'}, + 'extract_levels': {'coordinate': 'air_pressure', + 'levels': 20000, + 'scheme': 'linear'}, + 'extract_shape': {'decomposed': True, + 'ids': {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']}, + 'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp')}, + 'linear_trend': {}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc')}} + ancestors: + None + +2025-09-08 08:34:28,697 UTC [188770] INFO esmvalcore._recipe.recipe:1238 Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250908_083356/run/recipe_filled.yml +2025-09-08 08:34:28,699 UTC [188770] DEBUG esmvalcore.config._dask:170 Using Dask profile 'local-compute' +2025-09-08 08:34:28,699 UTC [188770] DEBUG esmvalcore.config._dask:174 Using additional Dask settings {} +2025-09-08 08:34:28,699 UTC [188770] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:34:44,955 UTC [188770] DEBUG esmvalcore.config._dask:192 Using Dask cluster LocalCluster(beb3fcf1, 'tcp://127.0.0.1:41237', workers=29, threads=58, memory=232.00 GiB) +2025-09-08 08:34:44,958 UTC [188770] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:34:44,968 UTC [188770] INFO esmvalcore.config._dask:205 Using Dask distributed scheduler (address: tcp://127.0.0.1:41237, dashboard link: http://127.0.0.1:8787/status) +2025-09-08 08:34:44,968 UTC [188770] INFO esmvalcore._task:905 Running 10 tasks using 10 processes +2025-09-08 08:34:45,178 UTC [189233] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:34:45,178 UTC [189235] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:34:45,179 UTC [189237] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:34:45,179 UTC [189239] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:34:45,180 UTC [189241] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:34:45,192 UTC [189233] INFO esmvalcore._task:289 Starting task tas_trends/tas in process [189233] +2025-09-08 08:34:45,192 UTC [189235] INFO esmvalcore._task:289 Starting task pr_trends/pr in process [189235] +2025-09-08 08:34:45,193 UTC [189239] INFO esmvalcore._task:289 Starting task ua200_trends/ua in process [189239] +2025-09-08 08:34:45,193 UTC [189237] INFO esmvalcore._task:289 Starting task psl_trends/psl in process [189237] +2025-09-08 08:34:45,193 UTC [189241] INFO esmvalcore._task:289 Starting task hus200_trends/hus in process [189241] +2025-09-08 08:34:45,270 UTC [188770] INFO esmvalcore._task:960 Progress: 5 tasks running, 5 tasks waiting for ancestors, 0/10 done +2025-09-08 08:34:45,994 UTC [189237] DEBUG esmvalcore.preprocessor:716 Running block ['extract_shape', 'area_statistics', 'linear_trend', 'convert_units'] +2025-09-08 08:34:45,994 UTC [189237] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc +2025-09-08 08:34:45,995 UTC [189237] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:45,996 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:45,998 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:45,998 UTC [189233] DEBUG esmvalcore.preprocessor:716 Running block ['extract_shape', 'area_statistics', 'linear_trend', 'convert_units'] +2025-09-08 08:34:45,999 UTC [189233] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc +2025-09-08 08:34:46,000 UTC [189233] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:46,000 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:46,002 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_OBS_HadCRUT5_5.0.1.0-analysis_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'HadCRUT5', +project = 'OBS', +type = 'ground', +version = '5.0.1.0-analysis', +tier = 2, +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 0, +alias = 'OBS', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:46,003 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:46,003 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,003 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc +2025-09-08 08:34:46,011 UTC [189239] DEBUG esmvalcore.preprocessor:716 Running block ['extract_levels', 'extract_shape', 'area_statistics', 'linear_trend', 'convert_units'] +2025-09-08 08:34:46,011 UTC [189239] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc +2025-09-08 08:34:46,012 UTC [189239] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:46,012 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:46,015 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,084 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,084 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,085 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,086 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,087 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,087 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,088 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,089 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,089 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,090 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,091 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,091 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,092 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,093 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,094 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,094 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,095 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,095 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,096 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,097 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,098 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,098 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,099 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,100 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,100 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,101 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,102 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,102 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,103 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,104 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,105 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,105 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,106 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,106 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,107 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,108 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,109 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,109 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,110 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,110 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,111 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,112 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,113 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,113 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,114 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,114 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,115 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,116 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,117 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,117 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,118 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,119 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,120 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,120 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,121 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,121 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,122 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,122 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:46,123 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,123 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,123 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:46,123 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc +2025-09-08 08:34:46,123 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,123 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc +2025-09-08 08:34:46,165 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc +2025-09-08 08:34:46,166 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,166 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc +2025-09-08 08:34:46,167 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc +2025-09-08 08:34:46,167 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,167 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc +2025-09-08 08:34:46,179 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc +2025-09-08 08:34:46,179 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:46,183 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc +2025-09-08 08:34:46,183 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,183 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc +2025-09-08 08:34:46,186 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc +2025-09-08 08:34:46,186 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,186 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc +2025-09-08 08:34:46,201 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc +2025-09-08 08:34:46,201 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,201 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc +2025-09-08 08:34:46,208 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc +2025-09-08 08:34:46,208 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,208 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc +2025-09-08 08:34:46,217 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc +2025-09-08 08:34:46,218 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,218 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc +2025-09-08 08:34:46,230 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc +2025-09-08 08:34:46,230 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,230 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc +2025-09-08 08:34:46,237 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc +2025-09-08 08:34:46,237 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,237 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc +2025-09-08 08:34:46,251 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc +2025-09-08 08:34:46,251 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,251 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc +2025-09-08 08:34:46,252 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'HadCRUT5', +project = 'OBS', +type = 'ground', +version = '5.0.1.0-analysis', +tier = 2, +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 0, +alias = 'OBS', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:46,253 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:46,255 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc +2025-09-08 08:34:46,255 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:46,255 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:46,255 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,255 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc +2025-09-08 08:34:46,256 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +check_level = , +cmor_table = 'OBS', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-09-08 08:34:46,270 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc +2025-09-08 08:34:46,270 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,270 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc +2025-09-08 08:34:46,270 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc +2025-09-08 08:34:46,270 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,270 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc +2025-09-08 08:34:46,286 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc +2025-09-08 08:34:46,286 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,286 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc +2025-09-08 08:34:46,288 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc +2025-09-08 08:34:46,289 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,289 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc +2025-09-08 08:34:46,303 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc +2025-09-08 08:34:46,303 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,303 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc +2025-09-08 08:34:46,308 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc +2025-09-08 08:34:46,308 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,308 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc +2025-09-08 08:34:46,320 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc +2025-09-08 08:34:46,321 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,321 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc +2025-09-08 08:34:46,328 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc +2025-09-08 08:34:46,328 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,328 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc +2025-09-08 08:34:46,338 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc +2025-09-08 08:34:46,338 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,338 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc +2025-09-08 08:34:46,347 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc +2025-09-08 08:34:46,348 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:46,348 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,348 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc +2025-09-08 08:34:46,349 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:46,355 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc +2025-09-08 08:34:46,355 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,356 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc +2025-09-08 08:34:46,368 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc +2025-09-08 08:34:46,368 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,368 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc +2025-09-08 08:34:46,374 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc +2025-09-08 08:34:46,374 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,374 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc +2025-09-08 08:34:46,382 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:46,384 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'HadCRUT5', +project = 'OBS', +type = 'ground', +version = '5.0.1.0-analysis', +tier = 2, +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 0, +alias = 'OBS', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:46,384 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:46,385 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +check_level = , +cmor_table = 'OBS', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-09-08 08:34:46,385 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:46,386 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:46,386 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:46,387 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc +2025-09-08 08:34:46,387 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,387 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc +2025-09-08 08:34:46,387 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:46,387 UTC [189233] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:46,392 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc +2025-09-08 08:34:46,393 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,393 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc +2025-09-08 08:34:46,393 UTC [189233] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:46,393 UTC [189233] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:46,407 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc +2025-09-08 08:34:46,407 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,407 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc +2025-09-08 08:34:46,409 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc +2025-09-08 08:34:46,410 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,410 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc +2025-09-08 08:34:46,426 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc +2025-09-08 08:34:46,427 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,427 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc +2025-09-08 08:34:46,429 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc +2025-09-08 08:34:46,429 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,429 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc +2025-09-08 08:34:46,442 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc +2025-09-08 08:34:46,442 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,442 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc +2025-09-08 08:34:46,450 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc +2025-09-08 08:34:46,450 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,450 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc +2025-09-08 08:34:46,460 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc +2025-09-08 08:34:46,460 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,460 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc +2025-09-08 08:34:46,471 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc +2025-09-08 08:34:46,472 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,472 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc +2025-09-08 08:34:46,476 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc +2025-09-08 08:34:46,477 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,477 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc +2025-09-08 08:34:46,492 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc +2025-09-08 08:34:46,492 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,492 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc +2025-09-08 08:34:46,493 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc +2025-09-08 08:34:46,493 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,493 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc +2025-09-08 08:34:46,511 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc +2025-09-08 08:34:46,511 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,511 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc +2025-09-08 08:34:46,511 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc +2025-09-08 08:34:46,512 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,512 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc +2025-09-08 08:34:46,528 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc +2025-09-08 08:34:46,528 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,528 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc +2025-09-08 08:34:46,535 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc +2025-09-08 08:34:46,536 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,536 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc +2025-09-08 08:34:46,547 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc +2025-09-08 08:34:46,547 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,547 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc +2025-09-08 08:34:46,557 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc +2025-09-08 08:34:46,557 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,558 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc +2025-09-08 08:34:46,565 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc +2025-09-08 08:34:46,565 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,565 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc +2025-09-08 08:34:46,579 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc +2025-09-08 08:34:46,579 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,580 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc +2025-09-08 08:34:46,584 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc +2025-09-08 08:34:46,585 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,585 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc +2025-09-08 08:34:46,599 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc +2025-09-08 08:34:46,599 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,600 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc +2025-09-08 08:34:46,602 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc +2025-09-08 08:34:46,603 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,603 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc +2025-09-08 08:34:46,621 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc +2025-09-08 08:34:46,621 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,621 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc +2025-09-08 08:34:46,622 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc +2025-09-08 08:34:46,622 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,622 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc +2025-09-08 08:34:46,639 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc +2025-09-08 08:34:46,639 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,639 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc +2025-09-08 08:34:46,646 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc +2025-09-08 08:34:46,647 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,647 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc +2025-09-08 08:34:46,658 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc +2025-09-08 08:34:46,658 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,658 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc +2025-09-08 08:34:46,666 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc +2025-09-08 08:34:46,667 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,667 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc +2025-09-08 08:34:46,677 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc +2025-09-08 08:34:46,677 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:46,687 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc +2025-09-08 08:34:46,688 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,688 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc +2025-09-08 08:34:46,709 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc +2025-09-08 08:34:46,710 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,710 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc +2025-09-08 08:34:46,716 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,730 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:46,731 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc +2025-09-08 08:34:46,731 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,732 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc +2025-09-08 08:34:46,750 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc +2025-09-08 08:34:46,751 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:46,751 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc +2025-09-08 08:34:46,757 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:46,772 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc +2025-09-08 08:34:46,772 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:46,773 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,774 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,776 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,777 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,778 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,779 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,780 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,781 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,782 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,784 UTC [189233] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:46,784 UTC [189233] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:46,784 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,785 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,786 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,787 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,788 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,789 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,790 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,791 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,792 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,794 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,795 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,796 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,797 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,798 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,799 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,800 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,801 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,803 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,804 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,805 UTC [189237] DEBUG esmvalcore.preprocessor._io:235 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,806 UTC [189237] DEBUG esmvalcore.preprocessor._io:279 Using air_pressure_at_mean_sea_level / (Pa) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,811 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,827 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:46,827 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:46,827 UTC [189233] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:46,827 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:46,835 UTC [189233] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:46,856 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:46,871 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,873 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,874 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,875 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,876 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,878 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,879 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,880 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:46,880 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,881 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,882 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,883 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,884 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,885 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,886 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,887 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,889 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,890 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,891 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,892 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,893 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,894 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,895 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,896 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,897 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,898 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,900 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,901 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,902 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,903 UTC [189239] DEBUG esmvalcore.preprocessor._io:235 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,904 UTC [189239] DEBUG esmvalcore.preprocessor._io:279 Using eastward_wind / (m s-1) (time: 12; air_pressure: 37; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:46,938 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:46,942 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +check_level = , +cmor_table = 'obs4MIPs', +mip = 'Amon', +frequency = 'mon', +short_name = 'ua' +2025-09-08 08:34:46,942 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +check_level = , +cmor_table = 'obs4MIPs', +mip = 'Amon', +frequency = 'mon', +short_name = 'psl' +2025-09-08 08:34:46,942 UTC [189233] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:46,944 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:46,944 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:46,945 UTC [189233] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:46,945 UTC [189233] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:46,945 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:46,945 UTC [189233] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:46,945 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:46,945 UTC [189233] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:46,945 UTC [189233] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:46,946 UTC [189233] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:46,947 UTC [189233] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:46,947 UTC [189233] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:46,947 UTC [189233] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:46,947 UTC [189233] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:46,947 UTC [189233] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:46,947 UTC [189233] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:46,947 UTC [189233] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:46,947 UTC [189233] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:46,947 UTC [189233] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:46,948 UTC [189233] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:46,949 UTC [189233] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:46,949 UTC [189233] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:46,951 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:46,951 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:46,953 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,953 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:46,953 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:46,953 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:46,954 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +check_level = , +cmor_table = 'obs4MIPs', +mip = 'Amon', +frequency = 'mon', +short_name = 'psl' +2025-09-08 08:34:46,954 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:46,955 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +check_level = , +cmor_table = 'obs4MIPs', +mip = 'Amon', +frequency = 'mon', +short_name = 'ua' +2025-09-08 08:34:46,955 UTC [189233] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:46,955 UTC [189233] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:46,955 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:46,955 UTC [189233] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:46,955 UTC [189233] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:46,955 UTC [189233] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:46,955 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:46,955 UTC [189233] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:46,955 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:46,955 UTC [189233] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:46,955 UTC [189233] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:46,956 UTC [189233] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:46,956 UTC [189233] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:46,956 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:46,956 UTC [189233] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:46,956 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_levels +2025-09-08 08:34:46,956 UTC [189233] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:46,956 UTC [189233] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:46,956 UTC [189233] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:46,956 UTC [189233] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:46,956 UTC [189233] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:46,956 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:46,956 UTC [189237] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:46,957 UTC [189233] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:46,957 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_levels' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +levels = 20000, +scheme = 'linear', +coordinate = 'air_pressure' +2025-09-08 08:34:46,957 UTC [189233] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:46,957 UTC [189233] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:46,958 UTC [189233] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:46,958 UTC [189233] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:46,958 UTC [189233] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:46,958 UTC [189233] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:46,958 UTC [189233] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:46,958 UTC [189233] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:46,959 UTC [189233] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:46,959 UTC [189233] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:46,959 UTC [189233] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:46,959 UTC [189233] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:46,959 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:46,959 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:46,959 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:46,959 UTC [189233] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:46,959 UTC [189233] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:46,960 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:46,960 UTC [189233] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:46,960 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:46,960 UTC [189233] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:46,960 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:46,960 UTC [189233] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:46,960 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:46,960 UTC [189233] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:46,960 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:46,960 UTC [189233] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:46,960 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:46,960 UTC [189233] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:46,960 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:46,960 UTC [189233] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:46,960 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:46,960 UTC [189233] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:46,961 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:46,961 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:46,961 UTC [189233] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:46,961 UTC [189239] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:46,961 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:46,961 UTC [189233] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:46,961 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:46,961 UTC [189233] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:46,961 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:46,961 UTC [189233] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:46,961 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:46,961 UTC [189233] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:46,961 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:46,961 UTC [189233] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:46,961 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:46,962 UTC [189233] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:46,962 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:46,962 UTC [189233] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:46,962 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:46,962 UTC [189233] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:46,962 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:46,962 UTC [189233] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:46,963 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:46,963 UTC [189233] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:46,963 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:46,963 UTC [189233] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:46,963 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:46,963 UTC [189233] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:46,963 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:46,963 UTC [189233] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:46,963 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:46,963 UTC [189233] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:46,963 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:46,963 UTC [189233] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:46,964 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:46,964 UTC [189233] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:46,964 UTC [189237] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:46,964 UTC [189237] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:46,964 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:46,964 UTC [189233] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:46,964 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:46,964 UTC [189233] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:46,964 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:46,964 UTC [189233] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:46,964 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:46,964 UTC [189233] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:46,964 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:46,964 UTC [189233] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:46,964 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:46,965 UTC [189233] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:46,965 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:46,965 UTC [189233] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:46,965 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:46,965 UTC [189233] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:46,965 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:46,965 UTC [189233] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:46,965 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:46,965 UTC [189233] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:46,965 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:46,965 UTC [189233] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:46,965 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:46,965 UTC [189233] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:46,966 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:46,966 UTC [189233] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:46,966 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:46,966 UTC [189233] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:46,966 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:46,966 UTC [189233] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:46,966 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:46,966 UTC [189233] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:46,966 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:46,966 UTC [189233] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:46,966 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:46,966 UTC [189233] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:46,966 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:46,966 UTC [189233] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:46,967 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:46,967 UTC [189233] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:46,967 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:46,967 UTC [189233] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:46,967 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:46,968 UTC [189233] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:46,968 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:46,968 UTC [189233] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:46,968 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:46,968 UTC [189233] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:46,968 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:46,968 UTC [189233] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:46,969 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:46,969 UTC [189233] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:46,969 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:46,969 UTC [189233] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:46,969 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:46,969 UTC [189233] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:46,969 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:46,969 UTC [189233] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:46,969 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:46,969 UTC [189233] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:46,969 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:46,969 UTC [189233] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:46,969 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:46,969 UTC [189233] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:46,970 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:46,970 UTC [189239] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:46,970 UTC [189239] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:46,973 UTC [189237] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:46,973 UTC [189237] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:46,974 UTC [189237] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:46,974 UTC [189237] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:46,974 UTC [189237] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:46,974 UTC [189237] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:46,982 UTC [189239] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:46,982 UTC [189239] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:46,983 UTC [189239] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:46,983 UTC [189239] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:46,983 UTC [189239] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:46,983 UTC [189239] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:46,988 UTC [189237] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:46,988 UTC [189237] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:46,988 UTC [189237] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:46,988 UTC [189237] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:46,988 UTC [189237] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:46,988 UTC [189237] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:46,989 UTC [189237] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:46,990 UTC [189237] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:46,991 UTC [189237] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:46,991 UTC [189237] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:46,991 UTC [189237] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:46,991 UTC [189237] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:46,991 UTC [189237] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:46,991 UTC [189237] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:46,991 UTC [189237] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:46,991 UTC [189237] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:46,992 UTC [189237] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:46,993 UTC [189237] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:46,993 UTC [189237] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:46,994 UTC [189237] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:46,994 UTC [189237] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:46,994 UTC [189237] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:46,994 UTC [189237] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:46,995 UTC [189237] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:46,995 UTC [189237] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:46,995 UTC [189237] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:46,995 UTC [189237] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:46,995 UTC [189237] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:46,995 UTC [189237] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:46,995 UTC [189237] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:46,995 UTC [189239] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:46,996 UTC [189237] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:46,996 UTC [189237] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:46,996 UTC [189237] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:46,996 UTC [189237] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:46,996 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:46,996 UTC [189237] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:46,996 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:46,996 UTC [189237] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:46,996 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:46,996 UTC [189237] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:46,996 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:46,996 UTC [189237] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:46,996 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:46,996 UTC [189237] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:46,996 UTC [189239] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:46,997 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:46,997 UTC [189239] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:46,997 UTC [189237] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:46,997 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:46,997 UTC [189239] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:46,997 UTC [189237] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:46,997 UTC [189239] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:46,997 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:46,997 UTC [189237] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:46,997 UTC [189239] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:46,997 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:46,997 UTC [189237] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:46,997 UTC [189239] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:46,997 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:46,997 UTC [189237] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:46,997 UTC [189239] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:46,997 UTC [189239] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:46,997 UTC [189239] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:46,997 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:46,997 UTC [189237] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:46,997 UTC [189239] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:46,997 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:46,997 UTC [189237] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:46,998 UTC [189239] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:46,998 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:46,998 UTC [189237] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:46,998 UTC [189239] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:46,998 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:46,998 UTC [189239] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:46,998 UTC [189237] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:46,998 UTC [189239] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:46,998 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:46,998 UTC [189237] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:46,998 UTC [189239] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:46,998 UTC [189239] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:46,998 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:46,998 UTC [189237] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:46,998 UTC [189239] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:46,998 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:46,998 UTC [189237] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:46,998 UTC [189239] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:46,998 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:46,998 UTC [189237] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:46,998 UTC [189239] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:46,998 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:46,999 UTC [189237] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:46,999 UTC [189239] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:46,999 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:46,999 UTC [189237] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:46,999 UTC [189239] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:46,999 UTC [189239] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:46,999 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:46,999 UTC [189237] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:46,999 UTC [189239] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:46,999 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:46,999 UTC [189237] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:46,999 UTC [189239] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:46,999 UTC [189239] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:46,999 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:46,999 UTC [189237] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:46,999 UTC [189239] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:46,999 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:46,999 UTC [189237] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:46,999 UTC [189239] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:46,999 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:46,999 UTC [189239] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:46,999 UTC [189237] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:47,000 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:47,000 UTC [189239] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:47,000 UTC [189237] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:47,000 UTC [189239] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:47,000 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:47,000 UTC [189237] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:47,000 UTC [189239] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:47,000 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:47,000 UTC [189237] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:47,000 UTC [189239] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:47,000 UTC [189239] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:47,000 UTC [189239] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:47,000 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:47,000 UTC [189237] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:47,000 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:47,000 UTC [189237] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:47,000 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:47,000 UTC [189237] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:47,000 UTC [189239] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:47,001 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:47,001 UTC [189237] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:47,001 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:47,001 UTC [189239] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:47,001 UTC [189237] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:47,001 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:47,001 UTC [189237] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:47,001 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:47,001 UTC [189237] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:47,001 UTC [189239] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:47,001 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:47,001 UTC [189237] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:47,001 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:47,001 UTC [189237] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:47,001 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:47,001 UTC [189237] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:47,002 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:47,002 UTC [189239] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:47,002 UTC [189237] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:47,002 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:47,002 UTC [189237] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:47,002 UTC [189239] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:47,002 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:47,002 UTC [189237] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:47,002 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:47,002 UTC [189237] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:47,002 UTC [189239] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:47,002 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:47,002 UTC [189237] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:47,002 UTC [189239] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:47,002 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:47,002 UTC [189237] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:47,002 UTC [189239] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:47,002 UTC [189239] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:47,003 UTC [189239] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:47,003 UTC [189239] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:47,003 UTC [189239] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:47,003 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:47,003 UTC [189237] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:47,003 UTC [189239] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:47,003 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:47,003 UTC [189237] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:47,003 UTC [189239] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:47,003 UTC [189239] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:47,003 UTC [189239] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:47,003 UTC [189239] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:47,004 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:47,004 UTC [189239] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:47,004 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:47,004 UTC [189239] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:47,004 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:47,004 UTC [189239] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:47,004 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:47,004 UTC [189239] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:47,004 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:47,004 UTC [189239] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:47,004 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:47,004 UTC [189239] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:47,004 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:47,004 UTC [189239] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:47,004 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:47,005 UTC [189239] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:47,005 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:47,005 UTC [189239] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:47,005 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:47,005 UTC [189239] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:47,005 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:47,005 UTC [189239] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:47,005 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:47,005 UTC [189239] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:47,005 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:47,005 UTC [189239] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:47,005 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:47,005 UTC [189239] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:47,006 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:47,006 UTC [189239] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:47,006 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:47,006 UTC [189239] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:47,006 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:47,006 UTC [189239] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:47,006 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:47,006 UTC [189239] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:47,006 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:47,006 UTC [189239] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:47,006 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:47,006 UTC [189239] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:47,006 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:47,007 UTC [189239] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:47,007 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:47,007 UTC [189239] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:47,007 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:47,007 UTC [189239] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:47,007 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:47,007 UTC [189239] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:47,007 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:47,007 UTC [189239] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:47,007 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:47,007 UTC [189239] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:47,007 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:47,007 UTC [189239] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:47,007 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:47,007 UTC [189239] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:47,008 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:47,008 UTC [189239] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:47,008 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:47,008 UTC [189239] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:47,008 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:47,008 UTC [189239] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:47,008 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:47,008 UTC [189239] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:47,008 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:47,008 UTC [189239] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:47,008 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:47,008 UTC [189239] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:47,009 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:47,009 UTC [189239] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:47,009 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:47,009 UTC [189239] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:47,009 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:47,009 UTC [189239] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:47,009 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:47,009 UTC [189239] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:47,009 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:47,009 UTC [189239] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:47,009 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:47,009 UTC [189239] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:47,009 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:47,010 UTC [189239] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:47,010 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:47,010 UTC [189239] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:47,010 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:47,010 UTC [189239] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:47,010 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:47,010 UTC [189239] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:47,010 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:47,010 UTC [189239] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:47,010 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:47,011 UTC [189239] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:47,011 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:47,011 UTC [189239] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:47,011 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:47,011 UTC [189239] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:47,012 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:47,012 UTC [189239] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:47,012 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:47,012 UTC [189239] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:47,012 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:47,012 UTC [189239] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:47,012 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:47,012 UTC [189239] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:47,012 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:47,012 UTC [189239] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:47,012 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:47,013 UTC [189239] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:47,013 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:47,013 UTC [189239] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:47,013 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:47,013 UTC [189239] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:47,013 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:47,013 UTC [189239] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:47,013 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:47,019 UTC [189233] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:47,020 UTC [189233] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:47,095 UTC [189239] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:47,095 UTC [189239] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:47,186 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:47,186 UTC [189237] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:47,187 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:47,187 UTC [189237] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:47,187 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:47,187 UTC [189237] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:47,187 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:47,187 UTC [189237] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:47,187 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:47,188 UTC [189237] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:47,188 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:47,188 UTC [189237] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:47,188 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:47,188 UTC [189237] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:47,188 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:47,188 UTC [189237] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:47,188 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:47,188 UTC [189237] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:47,188 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:47,188 UTC [189237] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:47,188 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:47,188 UTC [189237] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:47,189 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:47,234 UTC [189237] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:47,236 UTC [189237] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:47,371 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:47,373 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:47,373 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:47,375 UTC [189233] DEBUG esmvalcore.preprocessor._shared:459 Found no cell measure 'cell_area' in cube air_temperature / (K) (time: 360; -- : 46; latitude: 36; longitude: 72). Check availability of supplementary variables +2025-09-08 08:34:47,375 UTC [189233] DEBUG esmvalcore.preprocessor._shared:464 Attempting to calculate grid cell area +2025-09-08 08:34:47,375 UTC [189233] DEBUG esmvalcore.preprocessor._shared:478 Calculating grid cell areas for regular grid +2025-09-08 08:34:47,376 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:47,378 UTC [189237] DEBUG esmvalcore.preprocessor._shared:459 Found no cell measure 'cell_area' in cube air_pressure_at_mean_sea_level / (Pa) (time: 360; -- : 46; latitude: 19; longitude: 36). Check availability of supplementary variables +2025-09-08 08:34:47,378 UTC [189237] DEBUG esmvalcore.preprocessor._shared:464 Attempting to calculate grid cell area +2025-09-08 08:34:47,378 UTC [189237] DEBUG esmvalcore.preprocessor._shared:478 Calculating grid cell areas for regular grid +2025-09-08 08:34:47,386 UTC [189233] DEBUG esmvalcore.preprocessor._shared:527 Using DEFAULT_SPHERICAL_EARTH_RADIUS. while computing area weights of the following cube: +air_temperature / (K) (time: 360; -- : 46; latitude: 36; longitude: 72) + Dimension coordinates: + time x - - - + latitude - - x - + longitude - - - x + Auxiliary coordinates: + shape_id - x - - + Scalar coordinates: + height 2.0 m + realization 100.0, bound=(1.0, 200.0) + Cell methods: + 0 area: mean (interval: 5.0 degrees_north 5.0 degrees_east) + 1 time: mean (interval: 1 month) + 2 realization: mean + Attributes: + Conventions 'CF-1.7' + host 'levante6.atos.local' + mip 'Amon' + modeling_realm 'ground' + project_id 'OBS' + reference 'doi:https://doi.org/10.1029/2019JD032361' + source 'https://crudata.uea.ac.uk/cru/data/temperature/' + tier '2' + title 'HadCRUT5 data reformatted for ESMValTool v2.5.0' + user 'b309192' + version '5.0.1.0-analysis' +2025-09-08 08:34:47,387 UTC [189237] DEBUG esmvalcore.preprocessor._shared:527 Using DEFAULT_SPHERICAL_EARTH_RADIUS. while computing area weights of the following cube: +air_pressure_at_mean_sea_level / (Pa) (time: 360; -- : 46; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + latitude - - x - + longitude - - - x + Auxiliary coordinates: + shape_id - x - - + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:47,400 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:47,401 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:47,402 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) + +2025-09-08 08:34:47,402 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) + +2025-09-08 08:34:47,408 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:47,408 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:47,410 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +units = 'K yr-1' +2025-09-08 08:34:47,410 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +units = 'm-1 kg s-2 yr-1' +2025-09-08 08:34:47,411 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:47,411 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:47,412 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS/Tier2/HadCRUT5/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_185001-202112.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc') +2025-09-08 08:34:47,413 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/psl_ERA-5_gn_200901-200912.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc') +2025-09-08 08:34:47,412 UTC [189233] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + height 2.0 m + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude 0.0 degrees_east, bound=(-180.0, 180.0) degrees_east + realization 100.0, bound=(1.0, 200.0) + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 area: mean (interval: 5.0 degrees_north 5.0 degrees_east) + 1 time: mean (interval: 1 month) + 2 realization: mean + 3 latitude: longitude: mean + 4 time: trend + Attributes: + Conventions 'CF-1.7' + host 'levante6.atos.local' + mip 'Amon' + modeling_realm 'ground' + project_id 'OBS' + reference 'doi:https://doi.org/10.1029/2019JD032361' + source 'https://crudata.uea.ac.uk/cru/data/temperature/' + tier '2' + title 'HadCRUT5 data reformatted for ESMValTool v2.5.0' + user 'b309192' + version '5.0.1.0-analysis' +with lazy data to /executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc +2025-09-08 08:34:47,413 UTC [189237] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_pressure_at_mean_sea_level / (m-1 kg s-2 yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude -5.0 degrees_east, bound=(-185.0, 175.0) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 time: trend + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:02:59 MST 2019 Mon Nov 11 08:06:39 MST 2019 Mon Nov 11 08:10:27 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'psl' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +with lazy data to /executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc +2025-09-08 08:34:47,419 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:47,421 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:47,423 UTC [189239] DEBUG esmvalcore.preprocessor._shared:459 Found no cell measure 'cell_area' in cube eastward_wind / (m s-1) (time: 360; -- : 46; latitude: 19; longitude: 36). Check availability of supplementary variables +2025-09-08 08:34:47,423 UTC [189239] DEBUG esmvalcore.preprocessor._shared:464 Attempting to calculate grid cell area +2025-09-08 08:34:47,424 UTC [189239] DEBUG esmvalcore.preprocessor._shared:478 Calculating grid cell areas for regular grid +2025-09-08 08:34:47,432 UTC [189239] DEBUG esmvalcore.preprocessor._shared:527 Using DEFAULT_SPHERICAL_EARTH_RADIUS. while computing area weights of the following cube: +eastward_wind / (m s-1) (time: 360; -- : 46; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + latitude - - x - + longitude - - - x + Auxiliary coordinates: + shape_id - x - - + Scalar coordinates: + air_pressure 20000.0 Pa + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:47,447 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:47,448 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) + +2025-09-08 08:34:47,454 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:47,455 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +units = 'm s-1 yr-1' +2025-09-08 08:34:47,456 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:47,458 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/ua_ERA-5_gn_200901-200912.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc') +2025-09-08 08:34:47,458 UTC [189239] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +eastward_wind / (m s-1 yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + air_pressure 20000.0 Pa + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude -5.0 degrees_east, bound=(-185.0, 175.0) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 time: mean + 1 latitude: longitude: mean + 2 time: trend + Attributes: + Conventions 'CF-1.11; ODS-2.5' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'ua' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +with lazy data to /executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc +2025-09-08 08:34:47,496 UTC [189235] DEBUG esmvalcore.preprocessor:716 Running block ['extract_shape', 'area_statistics', 'linear_trend', 'convert_units'] +2025-09-08 08:34:47,496 UTC [189235] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc +2025-09-08 08:34:47,497 UTC [189235] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:47,497 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:47,499 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_obs4MIPs_GPCP-V2.3_v20180519_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'GPCP-V2.3', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20180519' +2025-09-08 08:34:47,504 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:47,504 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:47,504 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc +2025-09-08 08:34:47,583 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc +2025-09-08 08:34:47,583 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:47,593 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'GPCP-V2.3', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20180519' +2025-09-08 08:34:47,594 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:47,595 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:47,596 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:47,596 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +check_level = , +cmor_table = 'obs4MIPs', +mip = 'Amon', +frequency = 'mon', +short_name = 'pr' +2025-09-08 08:34:47,599 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:47,600 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:47,607 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:47,609 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'GPCP-V2.3', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 0, +alias = 'obs4MIPs', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = [], +frequency = 'mon', +version = 'v20180519' +2025-09-08 08:34:47,609 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:47,610 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +check_level = , +cmor_table = 'obs4MIPs', +mip = 'Amon', +frequency = 'mon', +short_name = 'pr' +2025-09-08 08:34:47,610 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:47,611 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:47,611 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:47,612 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:47,612 UTC [189235] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:47,621 UTC [189235] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:47,621 UTC [189235] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:47,631 UTC [189235] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:47,631 UTC [189235] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:47,631 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:47,631 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:47,631 UTC [189235] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:47,631 UTC [189235] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:47,646 UTC [189235] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:47,646 UTC [189235] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:47,646 UTC [189235] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:47,646 UTC [189235] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:47,646 UTC [189235] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:47,646 UTC [189235] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:47,647 UTC [189235] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:47,648 UTC [189235] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:47,648 UTC [189235] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:47,648 UTC [189235] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:47,648 UTC [189235] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:47,648 UTC [189235] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:47,648 UTC [189235] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:47,648 UTC [189235] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:47,648 UTC [189235] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:47,648 UTC [189235] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:47,649 UTC [189235] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:47,649 UTC [189235] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:47,649 UTC [189235] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:47,649 UTC [189235] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:47,649 UTC [189235] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:47,649 UTC [189235] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:47,649 UTC [189235] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:47,649 UTC [189235] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:47,649 UTC [189235] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:47,650 UTC [189235] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:47,650 UTC [189235] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:47,650 UTC [189235] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:47,650 UTC [189235] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:47,650 UTC [189235] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:47,650 UTC [189235] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:47,650 UTC [189235] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:47,650 UTC [189235] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:47,650 UTC [189235] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:47,651 UTC [189235] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:47,651 UTC [189235] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:47,651 UTC [189235] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:47,651 UTC [189235] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:47,652 UTC [189235] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:47,652 UTC [189235] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:47,652 UTC [189235] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:47,652 UTC [189235] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:47,653 UTC [189235] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:47,653 UTC [189235] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:47,653 UTC [189235] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:47,653 UTC [189235] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:47,653 UTC [189235] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:47,653 UTC [189235] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:47,653 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:47,653 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:47,653 UTC [189235] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:47,654 UTC [189235] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:47,654 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:47,654 UTC [189235] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:47,654 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:47,654 UTC [189235] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:47,654 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:47,654 UTC [189235] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:47,654 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:47,654 UTC [189235] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:47,654 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:47,654 UTC [189235] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:47,654 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:47,654 UTC [189235] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:47,654 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:47,654 UTC [189235] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:47,655 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:47,655 UTC [189235] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:47,655 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:47,655 UTC [189235] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:47,655 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:47,655 UTC [189235] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:47,655 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:47,655 UTC [189235] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:47,655 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:47,655 UTC [189235] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:47,655 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:47,655 UTC [189235] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:47,655 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:47,655 UTC [189235] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:47,656 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:47,656 UTC [189235] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:47,656 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:47,656 UTC [189235] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:47,656 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:47,656 UTC [189235] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:47,656 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:47,656 UTC [189235] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:47,656 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:47,656 UTC [189235] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:47,656 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:47,656 UTC [189235] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:47,656 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:47,656 UTC [189235] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:47,657 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:47,657 UTC [189235] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:47,657 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:47,657 UTC [189235] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:47,657 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:47,657 UTC [189235] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:47,657 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:47,657 UTC [189235] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:47,657 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:47,657 UTC [189235] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:47,657 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:47,657 UTC [189235] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:47,657 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:47,657 UTC [189235] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:47,658 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:47,658 UTC [189235] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:47,658 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:47,658 UTC [189235] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:47,658 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:47,658 UTC [189235] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:47,658 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:47,658 UTC [189235] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:47,658 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:47,658 UTC [189235] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:47,658 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:47,658 UTC [189235] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:47,659 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:47,659 UTC [189235] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:47,659 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:47,659 UTC [189235] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:47,659 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:47,659 UTC [189235] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:47,659 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:47,659 UTC [189235] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:47,659 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:47,659 UTC [189235] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:47,659 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:47,659 UTC [189235] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:47,659 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:47,660 UTC [189235] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:47,660 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:47,660 UTC [189235] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:47,660 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:47,660 UTC [189235] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:47,660 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:47,660 UTC [189235] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:47,660 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:47,660 UTC [189235] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:47,661 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:47,661 UTC [189235] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:47,661 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:47,661 UTC [189235] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:47,661 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:47,661 UTC [189235] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:47,662 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:47,662 UTC [189235] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:47,662 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:47,662 UTC [189235] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:47,662 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:47,662 UTC [189235] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:47,662 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:47,662 UTC [189235] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:47,662 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:47,662 UTC [189235] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:47,662 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:47,663 UTC [189235] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:47,663 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:47,663 UTC [189235] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:47,663 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:47,663 UTC [189235] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:47,663 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:47,663 UTC [189235] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:47,663 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:47,706 UTC [189235] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:47,707 UTC [189235] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:47,834 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:47,836 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:47,838 UTC [189235] DEBUG esmvalcore.preprocessor._shared:459 Found no cell measure 'cell_area' in cube precipitation_flux / (kg m-2 s-1) (time: 360; -- : 46; latitude: 71; longitude: 144). Check availability of supplementary variables +2025-09-08 08:34:47,838 UTC [189235] DEBUG esmvalcore.preprocessor._shared:464 Attempting to calculate grid cell area +2025-09-08 08:34:47,838 UTC [189235] DEBUG esmvalcore.preprocessor._shared:478 Calculating grid cell areas for regular grid +2025-09-08 08:34:47,850 UTC [189235] DEBUG esmvalcore.preprocessor._shared:527 Using DEFAULT_SPHERICAL_EARTH_RADIUS. while computing area weights of the following cube: +precipitation_flux / (kg m-2 s-1) (time: 360; -- : 46; latitude: 71; longitude: 144) + Dimension coordinates: + time x - - - + latitude - - x - + longitude - - - x + Auxiliary coordinates: + shape_id - x - - + Cell methods: + 0 time: mean + Attributes: + Conventions 'CF-1.4' + associated_files 'baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation gridspecFile: gridspec_atmos_fx_Obs-GPCP_GPCP_r0i0p0.nc ...' + cmor_version '2.9.1' + contact 'George Huffman (george.j.huffman@nasa.gov)' + frequency 'mon' + institute_id 'NASA-GSFC' + institution 'NASA Goddard Space Flight Center, Greenbelt MD, USA' + mip_specs 'CMIP5' + model_id 'Obs-GPCP' + modeling_realm 'atmos' + original_name 'precip' + product 'observations' + project_id 'obs4MIPs' + realm 'atmos' + references 'Huffman et al. 1997, http://dx.doi.org/10.1175/1520-0477(1997)078<0005:TGPCPG>2.0.CO;2; ...' + source 'Obs-GPCP (Global Precipitation Climatology Project) v23rB1' + source_id 'GPCP' + source_type 'satellite_retrieval_and_gauge_analysis' + table_id 'Table Amon_ana (10 March 2011) 34230b4cbd7bedf38c827d6e41c1b8ea' + title 'Global Precipitation Climatology Project (GPCP) Climate Data Record (CDR), ...' +2025-09-08 08:34:47,863 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:47,865 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) + +2025-09-08 08:34:47,870 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:47,872 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +units = 'mm kg m-3 day-1 yr-1' +2025-09-08 08:34:47,873 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:47,874 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc') +2025-09-08 08:34:47,874 UTC [189235] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +precipitation_flux / (mm kg m-3 day-1 yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + latitude -1.25 degrees_north, bound=(-90.0, 87.5) degrees_north + longitude 0.0 degrees_east, bound=(-180.0, 180.0) degrees_east + time 1994-12-30 12:00:00, bound=(1980-01-01 00:00:00, 2009-12-29 00:00:00) + Cell methods: + 0 time: mean + 1 latitude: longitude: mean + 2 time: trend + Attributes: + Conventions 'CF-1.4' + associated_files 'baseURL: http://cmip-pcmdi.llnl.gov/CMIP5/dataLocation gridspecFile: gridspec_atmos_fx_Obs-GPCP_GPCP_r0i0p0.nc ...' + cmor_version '2.9.1' + contact 'George Huffman (george.j.huffman@nasa.gov)' + frequency 'mon' + institute_id 'NASA-GSFC' + institution 'NASA Goddard Space Flight Center, Greenbelt MD, USA' + mip_specs 'CMIP5' + model_id 'Obs-GPCP' + modeling_realm 'atmos' + original_name 'precip' + product 'observations' + project_id 'obs4MIPs' + realm 'atmos' + references 'Huffman et al. 1997, http://dx.doi.org/10.1175/1520-0477(1997)078<0005:TGPCPG>2.0.CO;2; ...' + source 'Obs-GPCP (Global Precipitation Climatology Project) v23rB1' + source_id 'GPCP' + source_type 'satellite_retrieval_and_gauge_analysis' + table_id 'Table Amon_ana (10 March 2011) 34230b4cbd7bedf38c827d6e41c1b8ea' + title 'Global Precipitation Climatology Project (GPCP) Climate Data Record (CDR), ...' +with lazy data to /executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc +2025-09-08 08:34:48,068 UTC [189241] DEBUG esmvalcore.preprocessor:716 Running block ['extract_levels', 'extract_shape', 'area_statistics', 'linear_trend', 'convert_units'] +2025-09-08 08:34:48,068 UTC [189241] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc +2025-09-08 08:34:48,069 UTC [189241] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:48,070 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:48,072 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,135 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,136 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,138 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,139 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,140 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,142 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,143 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,144 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,145 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,147 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,148 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,149 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,151 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,152 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,153 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,155 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,156 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,157 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,158 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,160 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,161 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,162 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,164 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,165 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,166 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,167 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,169 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,170 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,171 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:48,171 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:48,172 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,172 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc +2025-09-08 08:34:48,224 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc +2025-09-08 08:34:48,224 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,224 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc +2025-09-08 08:34:48,242 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc +2025-09-08 08:34:48,242 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,242 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc +2025-09-08 08:34:48,261 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc +2025-09-08 08:34:48,261 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,261 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc +2025-09-08 08:34:48,279 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc +2025-09-08 08:34:48,279 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,279 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc +2025-09-08 08:34:48,296 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc +2025-09-08 08:34:48,296 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,296 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc +2025-09-08 08:34:48,313 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc +2025-09-08 08:34:48,314 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,314 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc +2025-09-08 08:34:48,329 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc +2025-09-08 08:34:48,329 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,329 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc +2025-09-08 08:34:48,345 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc +2025-09-08 08:34:48,345 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,345 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc +2025-09-08 08:34:48,361 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc +2025-09-08 08:34:48,362 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,362 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc +2025-09-08 08:34:48,378 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc +2025-09-08 08:34:48,378 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,378 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc +2025-09-08 08:34:48,396 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc +2025-09-08 08:34:48,396 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,396 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc +2025-09-08 08:34:48,414 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc +2025-09-08 08:34:48,414 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,414 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc +2025-09-08 08:34:48,434 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc +2025-09-08 08:34:48,434 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,434 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc +2025-09-08 08:34:48,453 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc +2025-09-08 08:34:48,454 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,454 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc +2025-09-08 08:34:48,476 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc +2025-09-08 08:34:48,477 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,477 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc +2025-09-08 08:34:48,496 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc +2025-09-08 08:34:48,496 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,496 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc +2025-09-08 08:34:48,514 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc +2025-09-08 08:34:48,514 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,514 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc +2025-09-08 08:34:48,532 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc +2025-09-08 08:34:48,532 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,532 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc +2025-09-08 08:34:48,550 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc +2025-09-08 08:34:48,551 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,551 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc +2025-09-08 08:34:48,568 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc +2025-09-08 08:34:48,569 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,569 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc +2025-09-08 08:34:48,586 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc +2025-09-08 08:34:48,586 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,586 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc +2025-09-08 08:34:48,604 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc +2025-09-08 08:34:48,604 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,604 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc +2025-09-08 08:34:48,620 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc +2025-09-08 08:34:48,620 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,620 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc +2025-09-08 08:34:48,637 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc +2025-09-08 08:34:48,638 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,638 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc +2025-09-08 08:34:48,653 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc +2025-09-08 08:34:48,654 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,654 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc +2025-09-08 08:34:48,670 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc +2025-09-08 08:34:48,670 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,670 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc +2025-09-08 08:34:48,684 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc +2025-09-08 08:34:48,685 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,685 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc +2025-09-08 08:34:48,700 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc +2025-09-08 08:34:48,700 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,700 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc +2025-09-08 08:34:48,717 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc +2025-09-08 08:34:48,717 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:48,717 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc +2025-09-08 08:34:48,732 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc +2025-09-08 08:34:48,732 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:48,800 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:49,233 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:49,257 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:49,270 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,271 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,271 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,272 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,273 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,273 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,274 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,274 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,275 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,275 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,276 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,276 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,277 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,277 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,278 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,278 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,279 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,279 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,280 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,280 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,280 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,281 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,281 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,282 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,282 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,283 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,283 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,284 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,284 UTC [189241] DEBUG esmvalcore.preprocessor._io:235 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,285 UTC [189241] DEBUG esmvalcore.preprocessor._io:279 Using specific_humidity / (1) (time: 12; air_pressure: 37; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - - + air_pressure - x - - + latitude - - x - + longitude - - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:49,315 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:49,316 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +check_level = , +cmor_table = 'native6', +mip = 'Amon', +frequency = 'mon', +short_name = 'hus' +2025-09-08 08:34:49,318 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:49,319 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:49,326 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:49,329 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 0, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +level = 'pl', +grib_id = '133', +tres = '1M', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:49,329 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:49,330 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +check_level = , +cmor_table = 'native6', +mip = 'Amon', +frequency = 'mon', +short_name = 'hus' +2025-09-08 08:34:49,330 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:49,331 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:49,331 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_levels +2025-09-08 08:34:49,332 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_levels' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +levels = 20000, +scheme = 'linear', +coordinate = 'air_pressure' +2025-09-08 08:34:49,336 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:49,340 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:49,341 UTC [189241] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:49,346 UTC [189241] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:49,346 UTC [189241] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:49,352 UTC [189241] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:49,352 UTC [189241] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:49,352 UTC [189241] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:49,352 UTC [189241] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:49,353 UTC [189241] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:49,353 UTC [189241] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:49,364 UTC [189241] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:49,364 UTC [189241] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:49,364 UTC [189241] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:49,365 UTC [189241] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:49,365 UTC [189241] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:49,365 UTC [189241] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:49,365 UTC [189241] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:49,365 UTC [189241] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:49,365 UTC [189241] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:49,365 UTC [189241] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:49,365 UTC [189241] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:49,365 UTC [189241] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:49,366 UTC [189241] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:49,366 UTC [189241] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:49,366 UTC [189241] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:49,366 UTC [189241] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:49,366 UTC [189241] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:49,366 UTC [189241] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:49,366 UTC [189241] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:49,366 UTC [189241] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:49,366 UTC [189241] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:49,367 UTC [189241] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:49,367 UTC [189241] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:49,367 UTC [189241] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:49,367 UTC [189241] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:49,367 UTC [189241] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:49,367 UTC [189241] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:49,367 UTC [189241] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:49,367 UTC [189241] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:49,368 UTC [189241] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:49,369 UTC [189241] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:49,369 UTC [189241] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:49,369 UTC [189241] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:49,369 UTC [189241] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:49,369 UTC [189241] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:49,370 UTC [189241] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:49,370 UTC [189241] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:49,370 UTC [189241] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:49,371 UTC [189241] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:49,371 UTC [189241] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:49,371 UTC [189241] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:49,372 UTC [189241] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:49,372 UTC [189241] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:49,372 UTC [189241] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:49,372 UTC [189241] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:49,372 UTC [189241] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:49,372 UTC [189241] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:49,372 UTC [189241] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:49,373 UTC [189241] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:49,373 UTC [189241] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:49,373 UTC [189241] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:49,373 UTC [189241] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:49,373 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:49,373 UTC [189241] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:49,373 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:49,373 UTC [189241] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:49,373 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:49,373 UTC [189241] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:49,373 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:49,373 UTC [189241] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:49,373 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:49,373 UTC [189241] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:49,374 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:49,374 UTC [189241] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:49,374 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:49,374 UTC [189241] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:49,374 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:49,374 UTC [189241] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:49,374 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:49,374 UTC [189241] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:49,374 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:49,374 UTC [189241] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:49,374 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:49,374 UTC [189241] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:49,374 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:49,374 UTC [189241] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:49,375 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:49,375 UTC [189241] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:49,375 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:49,375 UTC [189241] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:49,375 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:49,375 UTC [189241] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:49,375 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:49,375 UTC [189241] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:49,375 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:49,375 UTC [189241] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:49,375 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:49,375 UTC [189241] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:49,375 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:49,376 UTC [189241] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:49,376 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:49,376 UTC [189241] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:49,376 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:49,376 UTC [189241] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:49,376 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:49,376 UTC [189241] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:49,376 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:49,376 UTC [189241] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:49,376 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:49,376 UTC [189241] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:49,376 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:49,376 UTC [189241] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:49,377 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:49,377 UTC [189241] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:49,377 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:49,377 UTC [189241] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:49,377 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:49,377 UTC [189241] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:49,377 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:49,377 UTC [189241] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:49,377 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:49,377 UTC [189241] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:49,377 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:49,377 UTC [189241] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:49,378 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:49,378 UTC [189241] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:49,378 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:49,378 UTC [189241] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:49,378 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:49,378 UTC [189241] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:49,378 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:49,378 UTC [189241] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:49,378 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:49,378 UTC [189241] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:49,378 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:49,378 UTC [189241] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:49,378 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:49,378 UTC [189241] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:49,379 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:49,379 UTC [189241] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:49,379 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:49,379 UTC [189241] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:49,379 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:49,379 UTC [189241] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:49,379 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:49,379 UTC [189241] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:49,379 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:49,379 UTC [189241] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:49,379 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:49,379 UTC [189241] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:49,380 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:49,380 UTC [189241] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:49,380 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:49,380 UTC [189241] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:49,381 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:49,381 UTC [189241] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:49,381 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:49,381 UTC [189241] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:49,381 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:49,381 UTC [189241] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:49,381 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:49,381 UTC [189241] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:49,382 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:49,382 UTC [189241] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:49,382 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:49,382 UTC [189241] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:49,382 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:49,382 UTC [189241] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:49,382 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:49,382 UTC [189241] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:49,382 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:49,382 UTC [189241] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:49,382 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:49,382 UTC [189241] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:49,382 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:49,382 UTC [189241] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:49,383 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:51,200 UTC [189241] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:51,202 UTC [189241] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:51,364 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:51,376 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:51,378 UTC [189241] DEBUG esmvalcore.preprocessor._shared:459 Found no cell measure 'cell_area' in cube specific_humidity / (1) (time: 360; -- : 46; latitude: 701; longitude: 1440). Check availability of supplementary variables +2025-09-08 08:34:51,378 UTC [189241] DEBUG esmvalcore.preprocessor._shared:464 Attempting to calculate grid cell area +2025-09-08 08:34:51,378 UTC [189241] DEBUG esmvalcore.preprocessor._shared:478 Calculating grid cell areas for regular grid +2025-09-08 08:34:51,389 UTC [189241] DEBUG esmvalcore.preprocessor._shared:527 Using DEFAULT_SPHERICAL_EARTH_RADIUS. while computing area weights of the following cube: +specific_humidity / (1) (time: 360; -- : 46; latitude: 701; longitude: 1440) + Dimension coordinates: + time x - - - + latitude - - x - + longitude - - - x + Auxiliary coordinates: + shape_id - x - - + Scalar coordinates: + air_pressure 20000.0 Pa + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:51,425 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:51,429 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) + +2025-09-08 08:34:51,434 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:51,435 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +units = 'year-1' +2025-09-08 08:34:51,436 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:51,438 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/hus/era5_specific_humidity_2009_monthly.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc') +2025-09-08 08:34:51,438 UTC [189241] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +specific_humidity / (year-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + air_pressure 20000.0 Pa + latitude -2.4375 degrees_north, bound=(-90.0, 85.125) degrees_north + longitude -0.125 degrees_east, bound=(-180.125, 179.875) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 latitude: longitude: mean + 1 time: trend + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +with lazy data to /executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc +2025-09-08 08:34:52,168 UTC [189233] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc +2025-09-08 08:34:52,168 UTC [189235] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc +2025-09-08 08:34:52,168 UTC [189233] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:52,168 UTC [189235] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:52,168 UTC [189241] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc +2025-09-08 08:34:52,169 UTC [189241] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:52,169 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:52,169 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:52,169 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:52,170 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/hus_Amon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 1, +alias = 'CMIP6', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:52,170 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,170 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,172 UTC [189239] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc +2025-09-08 08:34:52,172 UTC [189239] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:52,173 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:52,173 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,173 UTC [189237] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc +2025-09-08 08:34:52,174 UTC [189237] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:52,174 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,174 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/ua_Amon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 1, +alias = 'CMIP6', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:52,174 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:52,174 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,175 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,176 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/psl_Amon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 1, +alias = 'CMIP6', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:52,176 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,177 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,177 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,178 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,179 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,179 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,180 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,181 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,181 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,182 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,183 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,183 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,184 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,185 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,186 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,186 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,187 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,187 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,188 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,189 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,190 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,190 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,191 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,191 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,192 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,193 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,194 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,194 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,195 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,195 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,197 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,197 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,198 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,198 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,199 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,199 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,200 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,201 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,202 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,202 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,203 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,203 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,204 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,205 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,206 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,206 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,207 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,208 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,208 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,209 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,210 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,210 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,211 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_native6_ERA5_v1_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,211 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:52,211 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,211 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc +2025-09-08 08:34:52,212 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_obs4MIPs_ERA-5_v20250220_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,212 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:52,212 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,212 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc +2025-09-08 08:34:52,218 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:52,218 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:52,218 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,218 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,218 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:52,218 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc +2025-09-08 08:34:52,218 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc +2025-09-08 08:34:52,218 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,218 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc +2025-09-08 08:34:52,227 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc +2025-09-08 08:34:52,227 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,227 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc +2025-09-08 08:34:52,234 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc +2025-09-08 08:34:52,235 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,235 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc +2025-09-08 08:34:52,238 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc +2025-09-08 08:34:52,238 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:52,240 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc +2025-09-08 08:34:52,240 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,240 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc +2025-09-08 08:34:52,241 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 1, +alias = 'CMIP6', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:52,242 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:52,243 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:52,243 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:52,244 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc +2025-09-08 08:34:52,244 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:52,244 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'psl' +2025-09-08 08:34:52,246 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:52,246 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc +2025-09-08 08:34:52,246 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:52,247 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 1, +alias = 'CMIP6', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:52,247 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:52,248 UTC [189241] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Aligned plev points with CMOR points +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc) +2025-09-08 08:34:52,249 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:52,249 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 1, +alias = 'CMIP6', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:52,250 UTC [189239] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Aligned plev points with CMOR points +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc) +2025-09-08 08:34:52,250 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:52,250 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:52,251 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:52,251 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'hus' +2025-09-08 08:34:52,252 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:52,252 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:52,252 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:52,253 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc +2025-09-08 08:34:52,253 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,253 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc +2025-09-08 08:34:52,253 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'ua' +2025-09-08 08:34:52,253 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:52,254 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_psl', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'psl', +variable_group = 'psl', +diagnostic = 'psl_trends', +recipe_dataset_index = 1, +alias = 'CMIP6', +original_short_name = 'psl', +standard_name = 'air_pressure_at_mean_sea_level', +long_name = 'Sea Level Pressure', +units = 'Pa', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:52,254 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:52,254 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:52,255 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'psl' +2025-09-08 08:34:52,255 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc +2025-09-08 08:34:52,255 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:52,255 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,255 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc +2025-09-08 08:34:52,255 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:52,256 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/areacella_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:52,256 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:52,256 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:52,256 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,256 UTC [189237] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:52,259 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:52,261 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:52,261 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_hus200', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'hus', +variable_group = 'hus', +diagnostic = 'hus200_trends', +recipe_dataset_index = 1, +alias = 'CMIP6', +original_short_name = 'hus', +standard_name = 'specific_humidity', +long_name = 'Specific Humidity', +units = '1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:52,261 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:52,262 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'hus' +2025-09-08 08:34:52,263 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:52,263 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_ua200', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'ua', +variable_group = 'ua', +diagnostic = 'ua200_trends', +recipe_dataset_index = 1, +alias = 'CMIP6', +original_short_name = 'ua', +standard_name = 'eastward_wind', +long_name = 'Eastward Wind', +units = 'm s-1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:52,263 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:52,264 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/areacella_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:52,264 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:52,264 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,264 UTC [189241] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:52,264 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'ua' +2025-09-08 08:34:52,265 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:52,266 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/areacella_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:52,266 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:52,266 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,266 UTC [189239] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:52,266 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc +2025-09-08 08:34:52,267 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,267 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc +2025-09-08 08:34:52,268 UTC [189237] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:52,268 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:52,270 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:52,270 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:52,271 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:52,271 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:52,272 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:52,272 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:52,274 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:52,274 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:52,275 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:52,275 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc +2025-09-08 08:34:52,275 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:52,275 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,275 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc +2025-09-08 08:34:52,276 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:52,276 UTC [189237] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of psl. +2025-09-08 08:34:52,276 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:52,277 UTC [189241] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:52,277 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:52,277 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:52,277 UTC [189237] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:52,278 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:52,278 UTC [189239] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:52,279 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:52,279 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:52,279 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc +2025-09-08 08:34:52,279 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:52,279 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,279 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:52,279 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc +2025-09-08 08:34:52,280 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:52,280 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:52,281 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:52,281 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:52,281 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:52,281 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:52,282 UTC [189237] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:52,282 UTC [189237] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:52,282 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:52,282 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:52,282 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:52,282 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:52,283 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:52,283 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:52,284 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:52,284 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:52,285 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:52,285 UTC [189241] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of hus. +2025-09-08 08:34:52,285 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:52,285 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_levels +2025-09-08 08:34:52,285 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:52,286 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_levels' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +levels = 20000, +scheme = 'linear', +coordinate = 'air_pressure' +2025-09-08 08:34:52,286 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:52,287 UTC [189239] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of ua. +2025-09-08 08:34:52,287 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_levels +2025-09-08 08:34:52,287 UTC [189237] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:52,287 UTC [189237] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:52,287 UTC [189237] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:52,288 UTC [189237] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:52,288 UTC [189237] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:52,288 UTC [189237] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:52,288 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_levels' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +levels = 20000, +scheme = 'linear', +coordinate = 'air_pressure' +2025-09-08 08:34:52,288 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:52,289 UTC [189237] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:52,289 UTC [189237] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:52,289 UTC [189237] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:52,289 UTC [189237] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:52,289 UTC [189237] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:52,289 UTC [189237] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:52,289 UTC [189237] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:52,290 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:52,290 UTC [189241] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:52,290 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:52,290 UTC [189237] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:52,291 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:52,291 UTC [189237] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:52,291 UTC [189239] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:52,292 UTC [189237] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:52,292 UTC [189237] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:52,292 UTC [189237] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:52,292 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc +2025-09-08 08:34:52,292 UTC [189237] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:52,292 UTC [189237] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:52,292 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,292 UTC [189237] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:52,292 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc +2025-09-08 08:34:52,292 UTC [189237] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:52,292 UTC [189237] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:52,292 UTC [189237] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:52,293 UTC [189237] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:52,293 UTC [189237] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:52,293 UTC [189237] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:52,293 UTC [189237] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:52,293 UTC [189237] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:52,293 UTC [189237] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:52,293 UTC [189237] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:52,293 UTC [189237] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:52,294 UTC [189237] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:52,294 UTC [189237] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:52,294 UTC [189237] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:52,294 UTC [189241] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:52,294 UTC [189241] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:52,296 UTC [189239] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:52,296 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc +2025-09-08 08:34:52,296 UTC [189239] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:52,296 UTC [189237] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:52,296 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,296 UTC [189237] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:52,296 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc +2025-09-08 08:34:52,297 UTC [189237] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:52,297 UTC [189237] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:52,297 UTC [189237] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:52,297 UTC [189237] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:52,297 UTC [189237] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:52,297 UTC [189237] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:52,297 UTC [189237] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:52,298 UTC [189237] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:52,298 UTC [189237] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:52,298 UTC [189237] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:52,298 UTC [189237] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:52,298 UTC [189237] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:52,298 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:52,298 UTC [189237] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:52,298 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:52,298 UTC [189237] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:52,298 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:52,298 UTC [189237] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:52,299 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:52,299 UTC [189237] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:52,299 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:52,299 UTC [189237] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:52,299 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:52,299 UTC [189237] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:52,299 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:52,299 UTC [189237] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:52,299 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:52,299 UTC [189237] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:52,299 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:52,299 UTC [189237] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:52,299 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:52,299 UTC [189237] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:52,299 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:52,300 UTC [189237] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:52,300 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:52,300 UTC [189237] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:52,300 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:52,300 UTC [189237] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:52,300 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:52,300 UTC [189237] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:52,300 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:52,300 UTC [189237] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:52,300 UTC [189241] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:52,300 UTC [189241] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:52,300 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:52,300 UTC [189237] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:52,300 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:52,300 UTC [189237] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:52,300 UTC [189241] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:52,300 UTC [189241] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:52,300 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:52,300 UTC [189241] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:52,301 UTC [189237] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:52,301 UTC [189241] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:52,301 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:52,301 UTC [189237] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:52,301 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:52,301 UTC [189237] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:52,301 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:52,301 UTC [189237] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:52,301 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:52,301 UTC [189237] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:52,301 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:52,301 UTC [189237] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:52,301 UTC [189239] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:52,301 UTC [189239] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:52,301 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:52,301 UTC [189237] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:52,302 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:52,302 UTC [189237] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:52,301 UTC [189239] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:52,302 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:52,302 UTC [189239] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:52,302 UTC [189237] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:52,302 UTC [189239] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:52,302 UTC [189239] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:52,302 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:52,302 UTC [189237] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:52,302 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:52,302 UTC [189237] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:52,302 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:52,302 UTC [189237] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:52,302 UTC [189241] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:52,302 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:52,302 UTC [189237] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:52,302 UTC [189241] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:52,303 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:52,303 UTC [189237] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:52,303 UTC [189241] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:52,303 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:52,303 UTC [189237] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:52,303 UTC [189241] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:52,303 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:52,303 UTC [189241] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:52,303 UTC [189237] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:52,303 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:52,303 UTC [189241] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:52,303 UTC [189237] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:52,303 UTC [189241] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:52,303 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:52,303 UTC [189237] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:52,303 UTC [189241] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:52,303 UTC [189241] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:52,303 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:52,303 UTC [189237] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:52,303 UTC [189241] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:52,303 UTC [189239] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:52,303 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:52,303 UTC [189237] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:52,303 UTC [189241] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:52,304 UTC [189241] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:52,304 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:52,304 UTC [189237] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:52,304 UTC [189239] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:52,304 UTC [189241] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:52,304 UTC [189239] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:52,304 UTC [189241] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:52,304 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:52,304 UTC [189237] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:52,304 UTC [189241] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:52,304 UTC [189239] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:52,304 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:52,304 UTC [189237] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:52,304 UTC [189241] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:52,304 UTC [189239] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:52,304 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:52,304 UTC [189241] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:52,304 UTC [189239] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:52,304 UTC [189237] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:52,304 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:52,304 UTC [189239] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:52,304 UTC [189241] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:52,304 UTC [189237] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:52,304 UTC [189239] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:52,304 UTC [189241] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:52,304 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:52,304 UTC [189237] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:52,304 UTC [189239] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:52,304 UTC [189241] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:52,305 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:52,305 UTC [189237] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:52,305 UTC [189241] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:52,305 UTC [189241] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:52,305 UTC [189241] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:52,305 UTC [189241] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:52,305 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:52,305 UTC [189237] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:52,305 UTC [189241] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:52,305 UTC [189241] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:52,305 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:52,305 UTC [189237] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:52,305 UTC [189241] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:52,305 UTC [189241] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:52,305 UTC [189239] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:52,305 UTC [189241] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:52,306 UTC [189239] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:52,306 UTC [189241] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:52,306 UTC [189239] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:52,306 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:52,306 UTC [189237] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:52,306 UTC [189241] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:52,306 UTC [189239] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:52,306 UTC [189239] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:52,306 UTC [189241] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:52,306 UTC [189239] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:52,306 UTC [189241] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:52,306 UTC [189239] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:52,306 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:52,306 UTC [189241] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:52,306 UTC [189237] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:52,306 UTC [189239] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:52,306 UTC [189241] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:52,306 UTC [189239] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:52,306 UTC [189241] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:52,306 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:52,306 UTC [189237] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:52,306 UTC [189239] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:52,306 UTC [189241] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:52,306 UTC [189241] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:52,307 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:52,307 UTC [189239] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:52,307 UTC [189237] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:52,307 UTC [189241] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:52,307 UTC [189239] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:52,307 UTC [189241] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:52,307 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:52,307 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc +2025-09-08 08:34:52,307 UTC [189237] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:52,307 UTC [189239] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:52,307 UTC [189241] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:52,307 UTC [189239] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:52,307 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:52,307 UTC [189241] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:52,307 UTC [189237] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:52,307 UTC [189239] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:52,307 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,307 UTC [189241] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:52,307 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:52,307 UTC [189237] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:52,307 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc +2025-09-08 08:34:52,307 UTC [189239] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:52,307 UTC [189241] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:52,307 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:52,307 UTC [189239] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:52,307 UTC [189237] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:52,307 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:52,307 UTC [189239] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:52,307 UTC [189237] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:52,307 UTC [189239] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:52,307 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:52,307 UTC [189237] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:52,308 UTC [189239] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:52,308 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:52,308 UTC [189237] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:52,308 UTC [189239] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:52,308 UTC [189241] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:52,308 UTC [189239] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:52,308 UTC [189239] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:52,308 UTC [189237] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:52,308 UTC [189239] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:52,308 UTC [189241] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:52,308 UTC [189239] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:52,308 UTC [189239] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:52,308 UTC [189241] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:52,309 UTC [189239] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:52,309 UTC [189241] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:52,309 UTC [189239] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:52,309 UTC [189241] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:52,309 UTC [189239] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:52,309 UTC [189241] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:52,309 UTC [189241] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:52,309 UTC [189241] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:52,310 UTC [189241] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:52,310 UTC [189241] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:52,310 UTC [189241] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:52,310 UTC [189241] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:52,310 UTC [189241] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:52,310 UTC [189241] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:52,310 UTC [189241] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:52,311 UTC [189241] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:52,311 UTC [189241] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:52,311 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:52,311 UTC [189241] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:52,311 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:52,311 UTC [189241] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:52,311 UTC [189239] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:52,311 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:52,311 UTC [189241] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:52,311 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:52,311 UTC [189241] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:52,311 UTC [189239] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:52,311 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:52,311 UTC [189241] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:52,311 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:52,311 UTC [189239] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:52,311 UTC [189241] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:52,311 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:52,312 UTC [189241] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:52,312 UTC [189239] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:52,312 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:52,312 UTC [189241] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:52,312 UTC [189239] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:52,312 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:52,312 UTC [189241] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:52,312 UTC [189239] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:52,312 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:52,312 UTC [189241] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:52,312 UTC [189239] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:52,312 UTC [189239] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:52,312 UTC [189239] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:52,312 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:52,312 UTC [189241] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:52,312 UTC [189239] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:52,312 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:52,312 UTC [189241] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:52,312 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:52,312 UTC [189241] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:52,313 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:52,313 UTC [189241] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:52,313 UTC [189239] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:52,313 UTC [189239] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:52,313 UTC [189239] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:52,313 UTC [189239] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:52,313 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:52,313 UTC [189241] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:52,313 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:52,313 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:52,313 UTC [189241] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:52,313 UTC [189239] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:52,313 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:52,313 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:52,313 UTC [189241] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:52,313 UTC [189239] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:52,313 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:52,313 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:52,313 UTC [189239] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:52,313 UTC [189241] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:52,313 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:52,313 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:52,313 UTC [189239] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:52,313 UTC [189241] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:52,313 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:52,313 UTC [189239] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:52,313 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:52,313 UTC [189241] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:52,314 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:52,314 UTC [189239] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:52,314 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:52,314 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:52,314 UTC [189241] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:52,314 UTC [189239] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:52,314 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:52,314 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:52,314 UTC [189241] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:52,314 UTC [189239] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:52,314 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:52,314 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:52,314 UTC [189241] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:52,314 UTC [189239] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:52,314 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:52,314 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:52,314 UTC [189239] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:52,314 UTC [189241] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:52,314 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:52,314 UTC [189241] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:52,314 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:52,314 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:52,314 UTC [189239] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:52,314 UTC [189241] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:52,314 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:52,314 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:52,314 UTC [189239] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:52,314 UTC [189241] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:52,315 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:52,315 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:52,315 UTC [189239] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:52,315 UTC [189241] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:52,315 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:52,315 UTC [189239] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:52,315 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:52,315 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:52,315 UTC [189239] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:52,315 UTC [189241] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:52,315 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:52,315 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:52,315 UTC [189239] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:52,315 UTC [189241] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:52,315 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:52,315 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:52,315 UTC [189239] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:52,315 UTC [189241] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:52,315 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:52,315 UTC [189239] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:52,315 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:52,315 UTC [189239] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:52,316 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:52,316 UTC [189239] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:52,316 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:52,316 UTC [189239] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:52,316 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:52,316 UTC [189241] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:52,316 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:52,316 UTC [189239] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:52,316 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:52,316 UTC [189241] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:52,316 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:52,316 UTC [189239] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:52,316 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:52,316 UTC [189241] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:52,316 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:52,316 UTC [189239] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:52,316 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:52,316 UTC [189241] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:52,316 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:52,316 UTC [189239] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:52,316 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:52,316 UTC [189241] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:52,316 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:52,317 UTC [189239] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:52,317 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:52,317 UTC [189241] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:52,317 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:52,317 UTC [189239] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:52,317 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:52,317 UTC [189241] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:52,317 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:52,317 UTC [189239] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:52,317 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:52,317 UTC [189241] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:52,317 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:52,317 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:52,317 UTC [189241] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:52,317 UTC [189239] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:52,317 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:52,317 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:52,317 UTC [189241] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:52,317 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc +2025-09-08 08:34:52,317 UTC [189239] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:52,317 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:52,317 UTC [189241] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:52,317 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:52,317 UTC [189239] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:52,317 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:52,317 UTC [189241] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:52,317 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,317 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:52,318 UTC [189239] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:52,318 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:52,318 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc +2025-09-08 08:34:52,318 UTC [189241] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:52,318 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:52,318 UTC [189239] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:52,318 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:52,318 UTC [189239] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:52,318 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:52,318 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:52,318 UTC [189239] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:52,318 UTC [189241] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:52,318 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:52,318 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:52,318 UTC [189241] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:52,318 UTC [189239] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:52,318 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:52,318 UTC [189239] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:52,318 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:52,318 UTC [189239] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:52,318 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:52,318 UTC [189241] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:52,319 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:52,319 UTC [189239] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:52,319 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:52,319 UTC [189239] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:52,319 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:52,319 UTC [189241] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:52,319 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:52,319 UTC [189239] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:52,319 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:52,319 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:52,319 UTC [189239] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:52,319 UTC [189241] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:52,319 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:52,319 UTC [189239] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:52,319 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:52,319 UTC [189241] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:52,319 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:52,319 UTC [189239] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:52,319 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:52,319 UTC [189241] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:52,320 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:52,320 UTC [189241] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:52,320 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:52,320 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:52,320 UTC [189239] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:52,320 UTC [189241] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:52,320 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:52,320 UTC [189241] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:52,320 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:52,320 UTC [189239] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:52,320 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:52,320 UTC [189241] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:52,320 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:52,320 UTC [189241] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:52,320 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc +2025-09-08 08:34:52,320 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:52,320 UTC [189241] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:52,320 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,320 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:52,320 UTC [189239] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:52,320 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc +2025-09-08 08:34:52,321 UTC [189241] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:52,321 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:52,321 UTC [189239] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:52,321 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:52,321 UTC [189239] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:52,321 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:52,321 UTC [189239] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:52,321 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:52,322 UTC [189239] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:52,322 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:52,322 UTC [189239] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:52,322 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:52,322 UTC [189239] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:52,322 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:52,322 UTC [189239] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:52,322 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:52,322 UTC [189239] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:52,322 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:52,322 UTC [189239] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:52,322 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:52,322 UTC [189239] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:52,323 UTC [189239] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:52,333 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc +2025-09-08 08:34:52,334 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,334 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc +2025-09-08 08:34:52,338 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc +2025-09-08 08:34:52,338 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,338 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc +2025-09-08 08:34:52,346 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc +2025-09-08 08:34:52,347 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,347 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc +2025-09-08 08:34:52,352 UTC [189237] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:52,352 UTC [189237] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:52,361 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc +2025-09-08 08:34:52,361 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,361 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc +2025-09-08 08:34:52,362 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc +2025-09-08 08:34:52,362 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,362 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc +2025-09-08 08:34:52,366 UTC [189241] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:52,366 UTC [189241] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:52,367 UTC [189239] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:52,368 UTC [189239] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:52,378 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc +2025-09-08 08:34:52,378 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,378 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc +2025-09-08 08:34:52,380 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc +2025-09-08 08:34:52,380 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,380 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc +2025-09-08 08:34:52,391 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc +2025-09-08 08:34:52,391 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,391 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc +2025-09-08 08:34:52,400 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc +2025-09-08 08:34:52,401 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,401 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc +2025-09-08 08:34:52,404 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc +2025-09-08 08:34:52,405 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,405 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc +2025-09-08 08:34:52,417 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc +2025-09-08 08:34:52,417 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,417 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc +2025-09-08 08:34:52,420 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc +2025-09-08 08:34:52,420 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,421 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc +2025-09-08 08:34:52,431 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc +2025-09-08 08:34:52,431 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,431 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc +2025-09-08 08:34:52,441 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc +2025-09-08 08:34:52,442 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,442 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc +2025-09-08 08:34:52,445 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc +2025-09-08 08:34:52,445 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,445 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc +2025-09-08 08:34:52,461 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc +2025-09-08 08:34:52,461 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,461 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc +2025-09-08 08:34:52,463 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc +2025-09-08 08:34:52,463 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,463 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc +2025-09-08 08:34:52,475 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc +2025-09-08 08:34:52,476 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,476 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc +2025-09-08 08:34:52,483 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc +2025-09-08 08:34:52,483 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,483 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc +2025-09-08 08:34:52,490 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc +2025-09-08 08:34:52,491 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,491 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc +2025-09-08 08:34:52,499 UTC [189237] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of psl. +2025-09-08 08:34:52,500 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:52,502 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:52,503 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc +2025-09-08 08:34:52,503 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,503 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc +2025-09-08 08:34:52,506 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc +2025-09-08 08:34:52,507 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,507 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc +2025-09-08 08:34:52,518 UTC [189241] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of hus. +2025-09-08 08:34:52,518 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:52,521 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:52,522 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc +2025-09-08 08:34:52,522 UTC [189239] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of ua. +2025-09-08 08:34:52,522 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,522 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc +2025-09-08 08:34:52,522 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:52,523 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc +2025-09-08 08:34:52,524 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,524 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc +2025-09-08 08:34:52,525 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:52,532 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:52,533 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) + +2025-09-08 08:34:52,538 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:52,538 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc +2025-09-08 08:34:52,539 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,539 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc +2025-09-08 08:34:52,540 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = 'm-1 kg s-2 yr-1' +2025-09-08 08:34:52,541 UTC [189237] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:52,542 UTC [189237] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/psl/gn/v20191115/psl_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc') +2025-09-08 08:34:52,542 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc +2025-09-08 08:34:52,543 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,543 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc +2025-09-08 08:34:52,542 UTC [189237] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_pressure_at_mean_sea_level / (m-1 kg s-2 yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude -5.0 degrees_east, bound=(-185.0, 175.0) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 time: trend + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: psl (['fld_s16i222'])" + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'atmos' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'psl' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc +2025-09-08 08:34:52,553 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc +2025-09-08 08:34:52,553 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:52,553 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,553 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc +2025-09-08 08:34:52,554 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) + +2025-09-08 08:34:52,556 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:52,558 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) + +2025-09-08 08:34:52,560 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:52,562 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = 'year-1' +2025-09-08 08:34:52,563 UTC [189241] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:52,563 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc +2025-09-08 08:34:52,563 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:52,564 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,564 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc +2025-09-08 08:34:52,564 UTC [189241] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/hus/gn/v20191115/hus_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc') +2025-09-08 08:34:52,565 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = 'm s-1 yr-1' +2025-09-08 08:34:52,566 UTC [189239] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:52,564 UTC [189241] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +specific_humidity / (year-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + air_pressure 20000.0 Pa, bound=(22500.0, 17500.0) Pa + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude -5.0 degrees_east, bound=(-185.0, 175.0) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 time: mean + 1 latitude: longitude: mean + 2 time: trend + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: hus (['fld_s30i205'])" + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'atmos' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'hus' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc +2025-09-08 08:34:52,567 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc +2025-09-08 08:34:52,567 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,567 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc +2025-09-08 08:34:52,568 UTC [189239] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/ua/gn/v20191115/ua_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_198001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc') +2025-09-08 08:34:52,568 UTC [189239] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +eastward_wind / (m s-1 yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + air_pressure 20000.0 Pa, bound=(22500.000000009997, 17500.000000009997) Pa + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude -5.0 degrees_east, bound=(-185.0, 175.0) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 time: mean + 1 latitude: longitude: mean + 2 time: trend + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: ua (['fld_s30i201'])" + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'atmos' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'ua' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc +2025-09-08 08:34:52,580 UTC [189237] DEBUG esmvalcore.preprocessor:743 Acquiring save lock for task psl_trends/psl +2025-09-08 08:34:52,581 UTC [189237] DEBUG esmvalcore.preprocessor:745 Acquired save lock for task psl_trends/psl +2025-09-08 08:34:52,581 UTC [189237] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task psl_trends/psl +2025-09-08 08:34:52,581 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc +2025-09-08 08:34:52,582 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,582 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc +2025-09-08 08:34:52,583 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc +2025-09-08 08:34:52,584 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,584 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc +2025-09-08 08:34:52,595 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc +2025-09-08 08:34:52,595 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,595 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc +2025-09-08 08:34:52,604 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc +2025-09-08 08:34:52,604 UTC [189241] DEBUG esmvalcore.preprocessor:743 Acquiring save lock for task hus200_trends/hus +2025-09-08 08:34:52,604 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,604 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc +2025-09-08 08:34:52,607 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc +2025-09-08 08:34:52,608 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,608 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc +2025-09-08 08:34:52,608 UTC [189239] DEBUG esmvalcore.preprocessor:743 Acquiring save lock for task ua200_trends/ua +2025-09-08 08:34:52,622 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc +2025-09-08 08:34:52,622 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc') +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,622 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc +2025-09-08 08:34:52,625 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc +2025-09-08 08:34:52,625 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,625 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc +2025-09-08 08:34:52,640 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc +2025-09-08 08:34:52,640 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:52,644 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc +2025-09-08 08:34:52,645 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,645 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc +2025-09-08 08:34:52,660 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,663 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc +2025-09-08 08:34:52,663 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,663 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc +2025-09-08 08:34:52,682 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc +2025-09-08 08:34:52,683 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,683 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc +2025-09-08 08:34:52,695 UTC [189237] WARNING py.warnings:109 /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 54.39 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +2025-09-08 08:34:52,697 UTC [189237] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:34:52,703 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc +2025-09-08 08:34:52,703 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,703 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc +2025-09-08 08:34:52,723 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc +2025-09-08 08:34:52,723 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,723 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc +2025-09-08 08:34:52,743 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc +2025-09-08 08:34:52,744 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,744 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc +2025-09-08 08:34:52,762 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc +2025-09-08 08:34:52,762 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,762 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc +2025-09-08 08:34:52,783 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc +2025-09-08 08:34:52,783 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,783 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc +2025-09-08 08:34:52,801 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc +2025-09-08 08:34:52,802 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc') +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:52,802 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc +2025-09-08 08:34:52,821 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc +2025-09-08 08:34:52,822 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:52,857 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:52,862 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:52,874 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:52,881 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:52,894 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,895 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,895 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,896 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,896 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,897 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,897 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,898 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,898 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,898 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,899 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,899 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,900 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,900 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,900 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,901 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,901 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,902 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,902 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,903 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,903 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,903 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,904 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,904 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,905 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,905 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,905 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,906 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,906 UTC [189235] DEBUG esmvalcore.preprocessor._io:235 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,907 UTC [189235] DEBUG esmvalcore.preprocessor._io:279 Using precipitation_flux / (kg m-2 s-1) (time: 12; latitude: 721; longitude: 1440) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:52,908 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[, + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + ] +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:52,923 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,925 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,926 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,927 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,929 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,930 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,932 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:52,931 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,933 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,934 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +check_level = , +cmor_table = 'native6', +mip = 'Amon', +frequency = 'mon', +short_name = 'pr' +2025-09-08 08:34:52,934 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,936 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:52,935 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,937 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:52,936 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,938 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,940 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:52,939 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,940 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,942 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA5', +project = 'native6', +type = 'reanaly', +version = 'v1', +tier = 3, +reference_for_metric = True, +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 1, +alias = 'native6', +automatic_regrid = True, +family = 'E5', +typeid = '00', +tres = '1M', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon' +2025-09-08 08:34:52,942 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:52,942 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,943 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +check_level = , +cmor_table = 'native6', +mip = 'Amon', +frequency = 'mon', +short_name = 'pr' +2025-09-08 08:34:52,943 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:52,943 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,944 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:52,944 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:52,945 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:52,945 UTC [189235] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:52,944 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,945 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,947 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,948 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,949 UTC [189235] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:52,949 UTC [189235] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:52,949 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,950 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,952 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,953 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,954 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,956 UTC [189235] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:52,957 UTC [189235] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:52,957 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:52,955 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,957 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:52,957 UTC [189235] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:52,957 UTC [189235] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:52,958 UTC [189235] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:52,957 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,958 UTC [189235] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:52,958 UTC [189235] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:52,958 UTC [189235] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:52,958 UTC [189235] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:52,958 UTC [189235] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:52,958 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:52,959 UTC [189235] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:52,960 UTC [189235] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:52,959 UTC [189233] DEBUG esmvalcore.preprocessor._io:235 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,961 UTC [189235] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:52,961 UTC [189235] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:52,961 UTC [189235] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:52,961 UTC [189235] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:52,961 UTC [189235] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:52,961 UTC [189235] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:52,961 UTC [189235] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:52,961 UTC [189235] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:52,962 UTC [189235] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:52,962 UTC [189235] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:52,962 UTC [189235] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:52,961 UTC [189233] DEBUG esmvalcore.preprocessor._io:279 Using air_temperature / (K) (time: 12; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - + latitude - x - + longitude - - x + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:52,962 UTC [189235] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:52,962 UTC [189235] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:52,962 UTC [189235] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:52,962 UTC [189235] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:52,962 UTC [189235] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:52,962 UTC [189235] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:52,963 UTC [189235] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:52,963 UTC [189235] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:52,963 UTC [189235] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:52,964 UTC [189235] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:52,964 UTC [189235] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:52,964 UTC [189235] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:52,965 UTC [189235] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:52,965 UTC [189235] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:52,965 UTC [189235] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:52,965 UTC [189235] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:52,965 UTC [189235] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:52,965 UTC [189235] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:52,965 UTC [189235] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:52,966 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:52,966 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:52,966 UTC [189235] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:52,966 UTC [189235] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:52,966 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:52,966 UTC [189235] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:52,966 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:52,966 UTC [189235] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:52,966 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:52,966 UTC [189235] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:52,966 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:52,966 UTC [189235] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:52,966 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:52,967 UTC [189235] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:52,967 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:52,967 UTC [189235] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:52,967 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:52,967 UTC [189235] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:52,967 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:52,967 UTC [189235] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:52,967 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:52,967 UTC [189235] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:52,967 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:52,967 UTC [189235] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:52,967 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:52,967 UTC [189235] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:52,968 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:52,968 UTC [189235] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:52,968 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:52,968 UTC [189235] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:52,968 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:52,968 UTC [189235] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:52,968 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:52,968 UTC [189235] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:52,968 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:52,968 UTC [189235] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:52,968 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:52,968 UTC [189235] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:52,968 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:52,968 UTC [189235] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:52,969 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:52,969 UTC [189235] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:52,969 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:52,969 UTC [189235] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:52,969 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:52,969 UTC [189235] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:52,969 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:52,969 UTC [189235] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:52,969 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:52,969 UTC [189235] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:52,969 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:52,969 UTC [189235] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:52,969 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:52,969 UTC [189235] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:52,970 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:52,970 UTC [189235] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:52,970 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:52,970 UTC [189235] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:52,970 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:52,970 UTC [189235] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:52,970 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:52,970 UTC [189235] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:52,970 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:52,970 UTC [189235] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:52,970 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:52,970 UTC [189235] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:52,971 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:52,971 UTC [189235] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:52,971 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:52,971 UTC [189235] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:52,971 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:52,971 UTC [189235] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:52,971 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:52,971 UTC [189235] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:52,971 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:52,971 UTC [189235] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:52,971 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:52,971 UTC [189235] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:52,971 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:52,971 UTC [189235] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:52,972 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:52,972 UTC [189235] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:52,972 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:52,972 UTC [189235] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:52,972 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:52,972 UTC [189235] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:52,972 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:52,972 UTC [189235] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:52,972 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:52,972 UTC [189235] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:52,972 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:52,972 UTC [189235] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:52,973 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:52,973 UTC [189235] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:52,973 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:52,973 UTC [189235] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:52,973 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:52,973 UTC [189235] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:52,974 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:52,974 UTC [189235] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:52,974 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:52,974 UTC [189235] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:52,974 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:52,974 UTC [189235] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:52,974 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:52,974 UTC [189235] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:52,975 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:52,975 UTC [189235] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:52,975 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:52,975 UTC [189235] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:52,975 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:52,975 UTC [189235] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:52,975 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:52,975 UTC [189235] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:52,975 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:52,975 UTC [189235] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:52,975 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:52,975 UTC [189235] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:52,976 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:52,998 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:53,000 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +check_level = , +cmor_table = 'obs4MIPs', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-09-08 08:34:53,002 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:53,003 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:53,007 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:53,009 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +dataset = 'ERA-5', +project = 'obs4MIPs', +tier = 1, +reference_for_metric = "true'", +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 1, +alias = 'obs4MIPs', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = [], +frequency = 'mon', +version = 'v20250220' +2025-09-08 08:34:53,009 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:53,010 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +check_level = , +cmor_table = 'obs4MIPs', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-09-08 08:34:53,011 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:53,012 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:53,012 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:53,013 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:53,013 UTC [189233] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:53,017 UTC [189233] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:53,018 UTC [189233] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:53,022 UTC [189233] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:53,022 UTC [189233] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:53,022 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:53,022 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:53,022 UTC [189233] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:53,022 UTC [189233] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:53,023 UTC [189233] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:53,024 UTC [189233] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:53,024 UTC [189233] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:53,024 UTC [189233] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:53,024 UTC [189233] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:53,024 UTC [189233] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:53,024 UTC [189233] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:53,024 UTC [189233] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:53,024 UTC [189233] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:53,025 UTC [189233] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:53,026 UTC [189233] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:53,026 UTC [189233] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:53,026 UTC [189233] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:53,026 UTC [189233] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:53,026 UTC [189233] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:53,026 UTC [189233] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:53,026 UTC [189233] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:53,026 UTC [189233] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:53,026 UTC [189233] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:53,027 UTC [189233] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:53,027 UTC [189233] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:53,027 UTC [189233] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:53,027 UTC [189233] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:53,027 UTC [189233] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:53,027 UTC [189233] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:53,027 UTC [189233] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:53,027 UTC [189233] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:53,027 UTC [189233] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:53,028 UTC [189233] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:53,028 UTC [189233] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:53,028 UTC [189233] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:53,028 UTC [189233] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:53,028 UTC [189233] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:53,028 UTC [189233] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:53,028 UTC [189233] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:53,029 UTC [189233] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:53,029 UTC [189233] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:53,029 UTC [189233] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:53,030 UTC [189233] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:53,030 UTC [189233] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:53,030 UTC [189233] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:53,030 UTC [189233] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:53,030 UTC [189233] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:53,031 UTC [189233] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:53,031 UTC [189233] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:53,031 UTC [189233] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:53,031 UTC [189233] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:53,031 UTC [189233] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:53,031 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:53,031 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:53,031 UTC [189233] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:53,031 UTC [189233] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:53,032 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:53,032 UTC [189233] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:53,032 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:53,032 UTC [189233] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:53,032 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:53,032 UTC [189233] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:53,032 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:53,032 UTC [189233] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:53,032 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:53,032 UTC [189233] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:53,032 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:53,032 UTC [189233] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:53,032 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:53,032 UTC [189233] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:53,032 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:53,033 UTC [189233] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:53,033 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:53,033 UTC [189233] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:53,033 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:53,033 UTC [189233] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:53,033 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:53,033 UTC [189233] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:53,033 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:53,033 UTC [189233] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:53,034 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:53,034 UTC [189233] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:53,034 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:53,034 UTC [189233] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:53,034 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:53,034 UTC [189233] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:53,034 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:53,034 UTC [189233] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:53,034 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:53,034 UTC [189233] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:53,034 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:53,034 UTC [189233] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:53,034 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:53,034 UTC [189233] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:53,035 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:53,035 UTC [189233] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:53,035 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:53,035 UTC [189233] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:53,035 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:53,035 UTC [189233] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:53,035 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:53,035 UTC [189233] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:53,035 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:53,035 UTC [189233] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:53,035 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:53,035 UTC [189233] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:53,035 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:53,036 UTC [189233] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:53,036 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:53,036 UTC [189233] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:53,036 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:53,036 UTC [189233] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:53,036 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:53,036 UTC [189233] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:53,036 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:53,036 UTC [189233] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:53,036 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:53,036 UTC [189233] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:53,036 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:53,037 UTC [189233] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:53,037 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:53,037 UTC [189233] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:53,037 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:53,037 UTC [189233] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:53,037 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:53,037 UTC [189233] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:53,037 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:53,037 UTC [189233] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:53,037 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:53,037 UTC [189233] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:53,037 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:53,037 UTC [189233] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:53,038 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:53,038 UTC [189233] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:53,038 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:53,038 UTC [189233] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:53,038 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:53,038 UTC [189233] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:53,038 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:53,038 UTC [189233] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:53,038 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:53,038 UTC [189233] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:53,038 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:53,038 UTC [189233] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:53,039 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:53,039 UTC [189233] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:53,039 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:53,039 UTC [189233] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:53,039 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:53,039 UTC [189233] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:53,040 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:53,040 UTC [189233] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:53,040 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:53,040 UTC [189233] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:53,040 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:53,040 UTC [189233] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:53,040 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:53,040 UTC [189233] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:53,041 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:53,041 UTC [189233] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:53,041 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:53,041 UTC [189233] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:53,041 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:53,041 UTC [189233] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:53,041 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:53,041 UTC [189233] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:53,041 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:53,041 UTC [189233] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:53,041 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:53,041 UTC [189233] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:53,042 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:53,086 UTC [189233] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:53,086 UTC [189233] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:53,233 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:53,236 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:53,237 UTC [189233] DEBUG esmvalcore.preprocessor._shared:459 Found no cell measure 'cell_area' in cube air_temperature / (K) (time: 360; -- : 46; latitude: 19; longitude: 36). Check availability of supplementary variables +2025-09-08 08:34:53,238 UTC [189233] DEBUG esmvalcore.preprocessor._shared:464 Attempting to calculate grid cell area +2025-09-08 08:34:53,238 UTC [189233] DEBUG esmvalcore.preprocessor._shared:478 Calculating grid cell areas for regular grid +2025-09-08 08:34:53,246 UTC [189233] DEBUG esmvalcore.preprocessor._shared:527 Using DEFAULT_SPHERICAL_EARTH_RADIUS. while computing area weights of the following cube: +air_temperature / (K) (time: 360; -- : 46; latitude: 19; longitude: 36) + Dimension coordinates: + time x - - - + latitude - - x - + longitude - - - x + Auxiliary coordinates: + shape_id - x - - + Scalar coordinates: + height 2.0 m + Cell methods: + 0 area: time: mean + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +2025-09-08 08:34:53,260 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:53,261 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) + +2025-09-08 08:34:53,266 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:53,268 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +units = 'K yr-1' +2025-09-08 08:34:53,269 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:53,271 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198001-198012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198101-198112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198201-198212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198301-198312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198401-198412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198501-198512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198601-198612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198701-198712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198801-198812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_198901-198912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199001-199012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199101-199112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199201-199212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199301-199312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199401-199412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199501-199512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199601-199612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199701-199712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199801-199812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_199901-199912.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200001-200012.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200101-200112.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200201-200212.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200301-200312.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200401-200412.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200501-200512.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200601-200612.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200701-200712.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200801-200812.nc'), + LocalFile('/climate_data/obs4MIPs/ERA-5/v20250220/tas_ERA-5_gn_200901-200912.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc') +2025-09-08 08:34:53,271 UTC [189233] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + height 2.0 m + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude -5.0 degrees_east, bound=(-185.0, 175.0) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 time: trend + Attributes: + CONVERSION_DATE 'Mon Nov 11 08:03:30 MST 2019 Mon Nov 11 08:07:07 MST 2019 Mon Nov 11 08:10:58 ...' + CONVERSION_PLATFORM 'Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC ...' + Conventions 'CF-1.11; ODS-2.5' + DATA_SOURCE 'ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Stor ...' + NCO 'netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = h ...' + NETCDF_COMPRESSION 'NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and ...' + NETCDF_CONVERSION 'CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4.' + NETCDF_VERSION '4.6.1' + activity_id 'obs4MIPs' + cmor_version '3.9.0' + contact 'submissions-obs4mips@wcrp-cmip.org' + data_specs_version 'ODS-2.5' + dataset_contributor 'PjG' + external_variables 'areacella' + frequency 'mon' + further_info_url '.' + grid '0.25x 0.25 degree latitude x longitude' + grid_label 'gn' + institution 'The European Centre for Medium-Range Weather Forecasts, Shinfield Park, ...' + institution_id 'ECMWF' + license 'License to use Copernicus products available https://cds.climate.coper ...' + mip_era 'CMIP6' + nominal_resolution '25 km' + product 'reanalysis' + realm 'atmos' + references 'https://doi.org/10.1002/qj.3803' + region 'global' + source 'ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis)' + source_data_retrieval_date '20240404' + source_id 'ERA-5' + source_type 'reanalysis' + source_version_number '1.0' + table_id 'obs4MIPs_Amon' + table_info 'Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747' + title 'ERA5 monthly mean data' + variable_id 'tas' + variant_info 'obs4MIPs-compliant product prepared by PCMDI (ODS2.5)' + variant_label 'PCMDI' +with lazy data to /executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc +2025-09-08 08:34:53,331 UTC [189233] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc +2025-09-08 08:34:53,332 UTC [189233] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:53,332 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:53,333 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/tas_Amon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 2, +alias = 'CMIP6', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:53,337 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:53,337 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:53,338 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +2025-09-08 08:34:53,382 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +2025-09-08 08:34:53,382 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:53,385 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 2, +alias = 'CMIP6', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:53,387 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:53,389 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:53,389 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:53,390 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-09-08 08:34:53,396 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:53,397 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:53,408 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:53,410 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_tas', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'tas_trends', +recipe_dataset_index = 2, +alias = 'CMIP6', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:53,410 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:53,411 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-09-08 08:34:53,412 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:53,413 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/areacella_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:53,413 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:53,413 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:53,413 UTC [189233] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:53,426 UTC [189233] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:53,426 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:53,428 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:53,428 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:53,429 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:53,429 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:53,430 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:53,430 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:53,432 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:53,432 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:53,433 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:53,433 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:53,434 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:53,434 UTC [189233] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. +2025-09-08 08:34:53,434 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:53,436 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:53,436 UTC [189233] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:53,441 UTC [189233] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:53,441 UTC [189233] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:53,449 UTC [189233] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:53,449 UTC [189233] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:53,449 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:53,449 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:53,449 UTC [189233] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:53,450 UTC [189233] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:53,451 UTC [189233] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:53,451 UTC [189233] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:53,451 UTC [189233] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:53,451 UTC [189233] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:53,451 UTC [189233] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:53,451 UTC [189233] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:53,452 UTC [189233] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:53,453 UTC [189233] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:53,453 UTC [189233] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:53,453 UTC [189233] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:53,453 UTC [189233] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:53,453 UTC [189233] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:53,453 UTC [189233] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:53,453 UTC [189233] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:53,453 UTC [189233] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:53,453 UTC [189233] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:53,454 UTC [189233] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:53,454 UTC [189233] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:53,454 UTC [189233] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:53,454 UTC [189233] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:53,454 UTC [189233] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:53,454 UTC [189233] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:53,454 UTC [189233] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:53,454 UTC [189233] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:53,454 UTC [189233] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:53,455 UTC [189233] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:53,455 UTC [189233] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:53,455 UTC [189233] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:53,455 UTC [189233] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:53,455 UTC [189233] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:53,455 UTC [189233] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:53,455 UTC [189233] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:53,455 UTC [189233] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:53,455 UTC [189233] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:53,456 UTC [189233] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:53,456 UTC [189233] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:53,456 UTC [189233] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:53,457 UTC [189233] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:53,457 UTC [189233] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:53,457 UTC [189233] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:53,457 UTC [189233] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:53,457 UTC [189233] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:53,457 UTC [189233] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:53,458 UTC [189233] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:53,458 UTC [189233] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:53,458 UTC [189233] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:53,458 UTC [189233] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:53,458 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:53,458 UTC [189233] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:53,458 UTC [189233] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:53,458 UTC [189233] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:53,458 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:53,458 UTC [189233] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:53,459 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:53,459 UTC [189233] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:53,459 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:53,459 UTC [189233] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:53,459 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:53,459 UTC [189233] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:53,459 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:53,459 UTC [189233] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:53,459 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:53,459 UTC [189233] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:53,459 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:53,459 UTC [189233] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:53,459 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:53,459 UTC [189233] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:53,459 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:53,459 UTC [189233] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:53,460 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:53,460 UTC [189233] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:53,460 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:53,460 UTC [189233] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:53,460 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:53,460 UTC [189233] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:53,460 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:53,460 UTC [189233] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:53,460 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:53,460 UTC [189233] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:53,460 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:53,460 UTC [189233] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:53,460 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:53,461 UTC [189233] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:53,461 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:53,461 UTC [189233] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:53,461 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:53,461 UTC [189233] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:53,461 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:53,461 UTC [189233] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:53,461 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:53,461 UTC [189233] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:53,461 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:53,461 UTC [189233] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:53,461 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:53,461 UTC [189233] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:53,462 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:53,462 UTC [189233] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:53,462 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:53,462 UTC [189233] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:53,462 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:53,462 UTC [189233] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:53,462 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:53,462 UTC [189233] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:53,462 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:53,462 UTC [189233] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:53,462 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:53,462 UTC [189233] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:53,463 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:53,463 UTC [189233] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:53,463 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:53,463 UTC [189233] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:53,463 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:53,463 UTC [189233] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:53,463 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:53,463 UTC [189233] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:53,463 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:53,463 UTC [189233] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:53,463 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:53,463 UTC [189233] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:53,463 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:53,463 UTC [189233] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:53,464 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:53,464 UTC [189233] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:53,464 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:53,464 UTC [189233] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:53,464 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:53,464 UTC [189233] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:53,464 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:53,464 UTC [189233] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:53,464 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:53,464 UTC [189233] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:53,464 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:53,464 UTC [189233] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:53,464 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:53,464 UTC [189233] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:53,465 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:53,465 UTC [189233] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:53,465 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:53,465 UTC [189233] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:53,465 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:53,465 UTC [189233] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:53,465 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:53,465 UTC [189233] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:53,466 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:53,466 UTC [189233] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:53,466 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:53,466 UTC [189233] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:53,466 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:53,466 UTC [189233] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:53,467 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:53,467 UTC [189233] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:53,467 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:53,467 UTC [189233] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:53,467 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:53,467 UTC [189233] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:53,467 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:53,467 UTC [189233] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:53,467 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:53,467 UTC [189233] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:53,467 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:53,467 UTC [189233] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:53,468 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:53,468 UTC [189233] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:53,468 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:53,468 UTC [189233] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:53,468 UTC [189233] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:53,514 UTC [189233] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:53,514 UTC [189233] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:53,667 UTC [189233] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. +2025-09-08 08:34:53,668 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:53,671 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:53,703 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:53,704 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) + +2025-09-08 08:34:53,709 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:53,711 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = 'K yr-1' +2025-09-08 08:34:53,712 UTC [189233] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:53,713 UTC [189233] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc') +2025-09-08 08:34:53,714 UTC [189233] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + height 2.0 m + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude -5.0 degrees_east, bound=(-185.0, 175.0) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 time: trend + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: tas (['fld_s03i236'])" + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'atmos' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'tas' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc +2025-09-08 08:34:53,753 UTC [189233] DEBUG esmvalcore.preprocessor:743 Acquiring save lock for task tas_trends/tas +2025-09-08 08:34:54,868 UTC [189235] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:54,870 UTC [189235] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:55,027 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:55,028 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:55,029 UTC [189235] DEBUG esmvalcore.preprocessor._shared:459 Found no cell measure 'cell_area' in cube precipitation_flux / (kg m-2 s-1) (time: 360; -- : 46; latitude: 701; longitude: 1440). Check availability of supplementary variables +2025-09-08 08:34:55,029 UTC [189235] DEBUG esmvalcore.preprocessor._shared:464 Attempting to calculate grid cell area +2025-09-08 08:34:55,030 UTC [189235] DEBUG esmvalcore.preprocessor._shared:478 Calculating grid cell areas for regular grid +2025-09-08 08:34:55,039 UTC [189235] DEBUG esmvalcore.preprocessor._shared:527 Using DEFAULT_SPHERICAL_EARTH_RADIUS. while computing area weights of the following cube: +precipitation_flux / (kg m-2 s-1) (time: 360; -- : 46; latitude: 701; longitude: 1440) + Dimension coordinates: + time x - - - + latitude - - x - + longitude - - - x + Auxiliary coordinates: + shape_id - x - - + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +2025-09-08 08:34:55,082 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:55,087 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) + +2025-09-08 08:34:55,091 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:55,093 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +units = 'mm kg m-3 day-1 yr-1' +2025-09-08 08:34:55,094 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:55,095 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1980_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1981_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1982_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1983_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1984_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1985_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1986_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1987_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1988_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1989_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1990_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1991_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1992_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1993_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1994_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1995_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1996_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1997_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1998_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_1999_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2000_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2001_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2002_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2003_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2004_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2005_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2006_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2007_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2008_monthly.nc'), + LocalFile('/home/b/b381141/.cache/climate_ref/ESMValTool/native6/Tier3/ERA5/v1/mon/pr/era5_total_precipitation_2009_monthly.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc') +2025-09-08 08:34:55,095 UTC [189235] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +precipitation_flux / (mm kg m-3 day-1 yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + latitude -2.4375 degrees_north, bound=(-90.0, 85.125) degrees_north + longitude -0.125 degrees_east, bound=(-180.125, 179.875) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 latitude: longitude: mean + 1 time: trend + Attributes: + Conventions 'CF-1.6' + comment 'Contains modified Copernicus Climate Change Service Information 2025' +with lazy data to /executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc +2025-09-08 08:34:55,666 UTC [189235] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc +2025-09-08 08:34:55,666 UTC [189235] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-09-08 08:34:55,667 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:55,668 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/pr_Amon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 2, +alias = 'CMIP6', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:55,680 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:55,681 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:55,681 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +2025-09-08 08:34:55,717 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc +2025-09-08 08:34:55,717 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:55,720 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 2, +alias = 'CMIP6', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:55,721 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:55,722 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:55,722 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:55,723 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'pr' +2025-09-08 08:34:55,729 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-09-08 08:34:55,730 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +timerange = '1980/2009' +2025-09-08 08:34:55,739 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:55,742 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +preprocessor = 'trend_pr', +mip = 'Amon', +timerange = '1980/2009', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'pr', +variable_group = 'pr', +diagnostic = 'pr_trends', +recipe_dataset_index = 2, +alias = 'CMIP6', +original_short_name = 'pr', +standard_name = 'precipitation_flux', +long_name = 'Precipitation', +units = 'kg m-2 s-1', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-09-08 08:34:55,742 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:55,743 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'pr' +2025-09-08 08:34:55,743 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-09-08 08:34:55,744 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250908_083356/preproc/fixed_files/areacella_fx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:55,744 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-09-08 08:34:55,744 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-09-08 08:34:55,744 UTC [189235] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:55,758 UTC [189235] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-09-08 08:34:55,758 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-09-08 08:34:55,760 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:55,760 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-09-08 08:34:55,761 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-09-08 08:34:55,761 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-09-08 08:34:55,761 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:55,762 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-09-08 08:34:55,764 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/b/b381141/auxiliary_data2'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/config-developer.yml'), + 'dask': {'profiles': {'compute': {'cluster': {'account': 'bd0854', + 'cores': 128, + 'interface': 'ib0', + 'local_directory': '/scratch/b/b381141/dask-tmp', + 'memory': '235GiB', + 'n_workers': 32, + 'processes': 32, + 'queue': 'compute', + 'type': 'dask_jobqueue.SLURMCluster', + 'walltime': '2:00:00'}}, + 'debug': {'scheduler': 'synchronous'}, + 'local-compute': {'cluster': {'memory_limit': '8GiB', + 'n_workers': 29, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local-interactive': {'cluster': {'memory_limit': '6GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_distributed': {'cluster': {'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 16}}, + 'use': 'local-compute'}, + 'diagnostics': None, + 'download_dir': PosixPath('/work/bd0854/DATA/ESMValTool2/download'), + 'drs': {'CMIP3': 'DKRZ', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'BADC', + 'OBS': 'default', + 'OBS6': 'default', + 'ana4mips': 'default', + 'native6': 'default', + 'obs4MIPs': 'ESGF'}, + 'exit_on_warning': False, + 'extra_facets_dir': [], + 'log_level': 'info', + 'logging': {'log_progress_interval': 0.0}, + 'max_datasets': None, + 'max_parallel_tasks': 10, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP3': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP3')], + 'CMIP5': {'/work/bd0854/DATA/ESMValTool2/CMIP5_DKRZ': 'DKRZ', + '/work/bd0854/DATA/ESMValTool2/download': 'ESGF'}, + 'CMIP6': [PosixPath('/climate_data')], + 'CORDEX': [PosixPath('/work/ik1017/C3SCORDEX/data/c3s-cordex/output')], + 'ICON': [PosixPath('/work/bd1179/experiments')], + 'OBS': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'OBS6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/OBS')], + 'RAWOBS': [PosixPath('/work/bd0854/DATA/ESMValTool2/RAWOBS')], + 'ana4mips': [PosixPath('/work/bd0854/DATA/ESMValTool2/OBS')], + 'default': [PosixPath('/work/bd0854/DATA/ESMValTool2/CMIP6_DKRZ')], + 'native6': [PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool/native6')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/b/b381141/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +project = 'CMIP6', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +institute = 'CSIRO', +exp = 'historical', +grid = 'gn', +short_name = 'areacella', +original_short_name = 'areacella', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Atmospheric Grid Variables', +units = 'm2', +modeling_realm = ['atmos', 'land'], +frequency = 'fx', +version = 'v20191115' +2025-09-08 08:34:55,764 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-09-08 08:34:55,764 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-09-08 08:34:55,764 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-09-08 08:34:55,766 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-09-08 08:34:55,766 UTC [189235] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of pr. +2025-09-08 08:34:55,766 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_shape +2025-09-08 08:34:55,767 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_shape' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +shapefile = PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), +decomposed = True, +ids = {'Acronym': ['NWN', + 'NEN', + 'GIC', + 'WNA', + 'CNA', + 'ENA', + 'NCA', + 'SCA', + 'CAR', + 'NWS', + 'NSA', + 'NES', + 'SAM', + 'SWS', + 'SES', + 'SSA', + 'NEU', + 'WCE', + 'EEU', + 'MED', + 'SAH', + 'WAF', + 'CAF', + 'NEAF', + 'SEAF', + 'WSAF', + 'ESAF', + 'MDG', + 'RAR', + 'WSB', + 'ESB', + 'RFE', + 'WCA', + 'ECA', + 'TIB', + 'EAS', + 'ARP', + 'SAS', + 'SEA', + 'NAU', + 'CAU', + 'EAU', + 'SAU', + 'NZ', + 'WAN', + 'EAN']} +2025-09-08 08:34:55,767 UTC [189235] DEBUG esmvalcore.preprocessor._area:711 extract_shape: Looking for shapefile /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp +2025-09-08 08:34:55,777 UTC [189235] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:55,777 UTC [189235] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:55,790 UTC [189235] DEBUG fiona._env:315 GDAL_DATA found in environment. +2025-09-08 08:34:55,790 UTC [189235] DEBUG fiona._env:315 PROJ_DATA found in environment. +2025-09-08 08:34:55,790 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:55,790 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:55,790 UTC [189235] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:55,790 UTC [189235] DEBUG fiona.ogrext:524 Next index: 1 +2025-09-08 08:34:55,791 UTC [189235] DEBUG fiona.ogrext:524 Next index: 2 +2025-09-08 08:34:55,792 UTC [189235] DEBUG fiona.ogrext:524 Next index: 3 +2025-09-08 08:34:55,792 UTC [189235] DEBUG fiona.ogrext:524 Next index: 4 +2025-09-08 08:34:55,792 UTC [189235] DEBUG fiona.ogrext:524 Next index: 5 +2025-09-08 08:34:55,792 UTC [189235] DEBUG fiona.ogrext:524 Next index: 6 +2025-09-08 08:34:55,792 UTC [189235] DEBUG fiona.ogrext:524 Next index: 7 +2025-09-08 08:34:55,792 UTC [189235] DEBUG fiona.ogrext:524 Next index: 8 +2025-09-08 08:34:55,792 UTC [189235] DEBUG fiona.ogrext:524 Next index: 9 +2025-09-08 08:34:55,792 UTC [189235] DEBUG fiona.ogrext:524 Next index: 10 +2025-09-08 08:34:55,792 UTC [189235] DEBUG fiona.ogrext:524 Next index: 11 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 12 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 13 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 14 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 15 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 16 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 17 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 18 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 19 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 20 +2025-09-08 08:34:55,793 UTC [189235] DEBUG fiona.ogrext:524 Next index: 21 +2025-09-08 08:34:55,794 UTC [189235] DEBUG fiona.ogrext:524 Next index: 22 +2025-09-08 08:34:55,794 UTC [189235] DEBUG fiona.ogrext:524 Next index: 23 +2025-09-08 08:34:55,794 UTC [189235] DEBUG fiona.ogrext:524 Next index: 24 +2025-09-08 08:34:55,794 UTC [189235] DEBUG fiona.ogrext:524 Next index: 25 +2025-09-08 08:34:55,794 UTC [189235] DEBUG fiona.ogrext:524 Next index: 26 +2025-09-08 08:34:55,794 UTC [189235] DEBUG fiona.ogrext:524 Next index: 27 +2025-09-08 08:34:55,794 UTC [189235] DEBUG fiona.ogrext:524 Next index: 28 +2025-09-08 08:34:55,794 UTC [189235] DEBUG fiona.ogrext:524 Next index: 29 +2025-09-08 08:34:55,794 UTC [189235] DEBUG fiona.ogrext:524 Next index: 30 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 31 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 32 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 33 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 34 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 35 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 36 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 37 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 38 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 39 +2025-09-08 08:34:55,795 UTC [189235] DEBUG fiona.ogrext:524 Next index: 40 +2025-09-08 08:34:55,796 UTC [189235] DEBUG fiona.ogrext:524 Next index: 41 +2025-09-08 08:34:55,796 UTC [189235] DEBUG fiona.ogrext:524 Next index: 42 +2025-09-08 08:34:55,796 UTC [189235] DEBUG fiona.ogrext:524 Next index: 43 +2025-09-08 08:34:55,796 UTC [189235] DEBUG fiona.ogrext:524 Next index: 44 +2025-09-08 08:34:55,796 UTC [189235] DEBUG fiona.ogrext:524 Next index: 45 +2025-09-08 08:34:55,796 UTC [189235] DEBUG fiona.ogrext:524 Next index: 46 +2025-09-08 08:34:55,796 UTC [189235] DEBUG fiona.ogrext:524 Next index: 47 +2025-09-08 08:34:55,797 UTC [189235] DEBUG fiona.ogrext:524 Next index: 48 +2025-09-08 08:34:55,797 UTC [189235] DEBUG fiona.ogrext:524 Next index: 49 +2025-09-08 08:34:55,797 UTC [189235] DEBUG fiona.ogrext:524 Next index: 50 +2025-09-08 08:34:55,798 UTC [189235] DEBUG fiona.ogrext:524 Next index: 51 +2025-09-08 08:34:55,798 UTC [189235] DEBUG fiona.ogrext:524 Next index: 52 +2025-09-08 08:34:55,798 UTC [189235] DEBUG fiona.ogrext:524 Next index: 53 +2025-09-08 08:34:55,798 UTC [189235] DEBUG fiona.ogrext:524 Next index: 54 +2025-09-08 08:34:55,798 UTC [189235] DEBUG fiona.ogrext:524 Next index: 55 +2025-09-08 08:34:55,798 UTC [189235] DEBUG fiona.ogrext:524 Next index: 56 +2025-09-08 08:34:55,798 UTC [189235] DEBUG fiona.ogrext:524 Next index: 57 +2025-09-08 08:34:55,799 UTC [189235] DEBUG fiona.ogrext:524 Next index: 58 +2025-09-08 08:34:55,799 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTSETNEXTBYINDEX: 1 +2025-09-08 08:34:55,799 UTC [189235] DEBUG fiona.ogrext:436 OLC_FASTFEATURECOUNT: 1 +2025-09-08 08:34:55,799 UTC [189235] DEBUG fiona.ogrext:436 Next index: 0 +2025-09-08 08:34:55,799 UTC [189235] DEBUG fiona.ogrext:556 Next index: 1 +2025-09-08 08:34:55,799 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'GIC' +2025-09-08 08:34:55,799 UTC [189235] DEBUG fiona.ogrext:556 Next index: 2 +2025-09-08 08:34:55,799 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWN' +2025-09-08 08:34:55,799 UTC [189235] DEBUG fiona.ogrext:556 Next index: 3 +2025-09-08 08:34:55,799 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEN' +2025-09-08 08:34:55,799 UTC [189235] DEBUG fiona.ogrext:556 Next index: 4 +2025-09-08 08:34:55,800 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WNA' +2025-09-08 08:34:55,800 UTC [189235] DEBUG fiona.ogrext:556 Next index: 5 +2025-09-08 08:34:55,800 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CNA' +2025-09-08 08:34:55,800 UTC [189235] DEBUG fiona.ogrext:556 Next index: 6 +2025-09-08 08:34:55,800 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ENA' +2025-09-08 08:34:55,800 UTC [189235] DEBUG fiona.ogrext:556 Next index: 7 +2025-09-08 08:34:55,800 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NCA' +2025-09-08 08:34:55,800 UTC [189235] DEBUG fiona.ogrext:556 Next index: 8 +2025-09-08 08:34:55,800 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SCA' +2025-09-08 08:34:55,800 UTC [189235] DEBUG fiona.ogrext:556 Next index: 9 +2025-09-08 08:34:55,800 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAR' +2025-09-08 08:34:55,800 UTC [189235] DEBUG fiona.ogrext:556 Next index: 10 +2025-09-08 08:34:55,800 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NWS' +2025-09-08 08:34:55,800 UTC [189235] DEBUG fiona.ogrext:556 Next index: 11 +2025-09-08 08:34:55,802 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NSA' +2025-09-08 08:34:55,802 UTC [189235] DEBUG fiona.ogrext:556 Next index: 12 +2025-09-08 08:34:55,802 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NES' +2025-09-08 08:34:55,802 UTC [189235] DEBUG fiona.ogrext:556 Next index: 13 +2025-09-08 08:34:55,802 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAM' +2025-09-08 08:34:55,802 UTC [189235] DEBUG fiona.ogrext:556 Next index: 14 +2025-09-08 08:34:55,802 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SWS' +2025-09-08 08:34:55,802 UTC [189235] DEBUG fiona.ogrext:556 Next index: 15 +2025-09-08 08:34:55,802 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SES' +2025-09-08 08:34:55,802 UTC [189235] DEBUG fiona.ogrext:556 Next index: 16 +2025-09-08 08:34:55,803 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SSA' +2025-09-08 08:34:55,803 UTC [189235] DEBUG fiona.ogrext:556 Next index: 17 +2025-09-08 08:34:55,803 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEU' +2025-09-08 08:34:55,803 UTC [189235] DEBUG fiona.ogrext:556 Next index: 18 +2025-09-08 08:34:55,803 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCE' +2025-09-08 08:34:55,803 UTC [189235] DEBUG fiona.ogrext:556 Next index: 19 +2025-09-08 08:34:55,803 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EEU' +2025-09-08 08:34:55,803 UTC [189235] DEBUG fiona.ogrext:556 Next index: 20 +2025-09-08 08:34:55,803 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MED' +2025-09-08 08:34:55,803 UTC [189235] DEBUG fiona.ogrext:556 Next index: 21 +2025-09-08 08:34:55,803 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAH' +2025-09-08 08:34:55,803 UTC [189235] DEBUG fiona.ogrext:556 Next index: 22 +2025-09-08 08:34:55,804 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAF' +2025-09-08 08:34:55,804 UTC [189235] DEBUG fiona.ogrext:556 Next index: 23 +2025-09-08 08:34:55,804 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAF' +2025-09-08 08:34:55,804 UTC [189235] DEBUG fiona.ogrext:556 Next index: 24 +2025-09-08 08:34:55,804 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NEAF' +2025-09-08 08:34:55,804 UTC [189235] DEBUG fiona.ogrext:556 Next index: 25 +2025-09-08 08:34:55,804 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEAF' +2025-09-08 08:34:55,804 UTC [189235] DEBUG fiona.ogrext:556 Next index: 26 +2025-09-08 08:34:55,804 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSAF' +2025-09-08 08:34:55,804 UTC [189235] DEBUG fiona.ogrext:556 Next index: 27 +2025-09-08 08:34:55,804 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESAF' +2025-09-08 08:34:55,804 UTC [189235] DEBUG fiona.ogrext:556 Next index: 28 +2025-09-08 08:34:55,804 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'MDG' +2025-09-08 08:34:55,804 UTC [189235] DEBUG fiona.ogrext:556 Next index: 29 +2025-09-08 08:34:55,805 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RAR' +2025-09-08 08:34:55,805 UTC [189235] DEBUG fiona.ogrext:556 Next index: 30 +2025-09-08 08:34:55,805 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WSB' +2025-09-08 08:34:55,805 UTC [189235] DEBUG fiona.ogrext:556 Next index: 31 +2025-09-08 08:34:55,805 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ESB' +2025-09-08 08:34:55,805 UTC [189235] DEBUG fiona.ogrext:556 Next index: 32 +2025-09-08 08:34:55,805 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'RFE' +2025-09-08 08:34:55,805 UTC [189235] DEBUG fiona.ogrext:556 Next index: 33 +2025-09-08 08:34:55,805 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WCA' +2025-09-08 08:34:55,805 UTC [189235] DEBUG fiona.ogrext:556 Next index: 34 +2025-09-08 08:34:55,805 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ECA' +2025-09-08 08:34:55,805 UTC [189235] DEBUG fiona.ogrext:556 Next index: 35 +2025-09-08 08:34:55,805 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'TIB' +2025-09-08 08:34:55,805 UTC [189235] DEBUG fiona.ogrext:556 Next index: 36 +2025-09-08 08:34:55,806 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAS' +2025-09-08 08:34:55,806 UTC [189235] DEBUG fiona.ogrext:556 Next index: 37 +2025-09-08 08:34:55,806 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARP' +2025-09-08 08:34:55,806 UTC [189235] DEBUG fiona.ogrext:556 Next index: 38 +2025-09-08 08:34:55,806 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAS' +2025-09-08 08:34:55,806 UTC [189235] DEBUG fiona.ogrext:556 Next index: 39 +2025-09-08 08:34:55,806 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SEA' +2025-09-08 08:34:55,806 UTC [189235] DEBUG fiona.ogrext:556 Next index: 40 +2025-09-08 08:34:55,806 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAU' +2025-09-08 08:34:55,806 UTC [189235] DEBUG fiona.ogrext:556 Next index: 41 +2025-09-08 08:34:55,806 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'CAU' +2025-09-08 08:34:55,806 UTC [189235] DEBUG fiona.ogrext:556 Next index: 42 +2025-09-08 08:34:55,807 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAU' +2025-09-08 08:34:55,807 UTC [189235] DEBUG fiona.ogrext:556 Next index: 43 +2025-09-08 08:34:55,807 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAU' +2025-09-08 08:34:55,807 UTC [189235] DEBUG fiona.ogrext:556 Next index: 44 +2025-09-08 08:34:55,807 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NZ' +2025-09-08 08:34:55,807 UTC [189235] DEBUG fiona.ogrext:556 Next index: 45 +2025-09-08 08:34:55,807 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAN' +2025-09-08 08:34:55,807 UTC [189235] DEBUG fiona.ogrext:556 Next index: 46 +2025-09-08 08:34:55,808 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'WAN' +2025-09-08 08:34:55,808 UTC [189235] DEBUG fiona.ogrext:556 Next index: 47 +2025-09-08 08:34:55,808 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARO' +2025-09-08 08:34:55,808 UTC [189235] DEBUG fiona.ogrext:556 Next index: 48 +2025-09-08 08:34:55,809 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NPO' +2025-09-08 08:34:55,809 UTC [189235] DEBUG fiona.ogrext:556 Next index: 49 +2025-09-08 08:34:55,809 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EPO' +2025-09-08 08:34:55,809 UTC [189235] DEBUG fiona.ogrext:556 Next index: 50 +2025-09-08 08:34:55,809 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SPO' +2025-09-08 08:34:55,809 UTC [189235] DEBUG fiona.ogrext:556 Next index: 51 +2025-09-08 08:34:55,809 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'NAO' +2025-09-08 08:34:55,809 UTC [189235] DEBUG fiona.ogrext:556 Next index: 52 +2025-09-08 08:34:55,809 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EAO' +2025-09-08 08:34:55,809 UTC [189235] DEBUG fiona.ogrext:556 Next index: 53 +2025-09-08 08:34:55,810 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SAO' +2025-09-08 08:34:55,810 UTC [189235] DEBUG fiona.ogrext:556 Next index: 54 +2025-09-08 08:34:55,810 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'ARS' +2025-09-08 08:34:55,810 UTC [189235] DEBUG fiona.ogrext:556 Next index: 55 +2025-09-08 08:34:55,810 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'BOB' +2025-09-08 08:34:55,810 UTC [189235] DEBUG fiona.ogrext:556 Next index: 56 +2025-09-08 08:34:55,810 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'EIO' +2025-09-08 08:34:55,810 UTC [189235] DEBUG fiona.ogrext:556 Next index: 57 +2025-09-08 08:34:55,810 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SIO' +2025-09-08 08:34:55,810 UTC [189235] DEBUG fiona.ogrext:556 Next index: 58 +2025-09-08 08:34:55,810 UTC [189235] DEBUG esmvalcore.preprocessor._area:567 Found shape 'SOO' +2025-09-08 08:34:55,855 UTC [189235] DEBUG fiona.collection:660 Flushed buffer +2025-09-08 08:34:55,856 UTC [189235] DEBUG fiona.collection:662 Stopped session +2025-09-08 08:34:56,003 UTC [189235] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of pr. +2025-09-08 08:34:56,004 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-09-08 08:34:56,006 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-09-08 08:34:56,037 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step linear_trend +2025-09-08 08:34:56,038 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'linear_trend' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) + +2025-09-08 08:34:56,042 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-09-08 08:34:56,044 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = 'mm kg m-3 day-1 yr-1' +2025-09-08 08:34:56,045 UTC [189235] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-09-08 08:34:56,046 UTC [189235] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/pr/gn/v20191115/pr_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_185001-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/fx/areacella/gn/v20191115/areacella_fx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc') +2025-09-08 08:34:56,046 UTC [189235] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +precipitation_flux / (mm kg m-3 day-1 yr-1) (-- : 46) + Auxiliary coordinates: + shape_id x + Scalar coordinates: + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude -5.0 degrees_east, bound=(-185.0, 175.0) degrees_east + time 1995-01-01 00:00:00, bound=(1980-01-01 00:00:00, 2010-01-01 00:00:00) + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 time: trend + Attributes: + Conventions 'CF-1.7 CMIP-6.2' + activity_id 'CMIP' + branch_method 'standard' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.int64(-616894) + cmor_version '3.4.0' + data_specs_version '01.00.30' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.no ...' + grid 'native atmosphere N96 grid (145x192 latxlon)' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Commonwealth Scientific and Industrial Research Organisation, Aspendale, ...' + institution_id 'CSIRO' + license 'CMIP6 model data produced by CSIRO is licensed under a Creative Commons ...' + mip_era 'CMIP6' + nominal_resolution '250 km' + notes "Exp: ESM-historical; Local ID: HI-05; Variable: pr (['fld_s05i216'])" + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'ACCESS-ESM1-5' + parent_time_units 'days since 1850-1-1 00:00:00' + parent_variant_label 'r1i1p1f1' + physics_index np.int32(1) + product 'model-output' + realization_index np.int32(1) + realm 'atmos' + run_variant 'forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, ...' + source 'ACCESS-ESM1.5 (2019): \naerosol: CLASSIC (v1.0)\natmos: HadGAM2 (r1.1, ...' + source_id 'ACCESS-ESM1-5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'pr' + variant_label 'r1i1p1f1' + version 'v20191115' +with lazy data to /executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc +2025-09-08 08:34:56,085 UTC [189235] DEBUG esmvalcore.preprocessor:743 Acquiring save lock for task pr_trends/pr +2025-09-08 08:35:00,077 UTC [189237] INFO esmvalcore.preprocessor._dask_progress:187 psl_trends/psl [########################################] | 100% Completed | 7.38 s +2025-09-08 08:35:00,078 UTC [189237] DEBUG esmvalcore.preprocessor:755 Released save lock for task psl_trends/psl +2025-09-08 08:35:00,079 UTC [189241] DEBUG esmvalcore.preprocessor:745 Acquired save lock for task hus200_trends/hus +2025-09-08 08:35:00,079 UTC [189241] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task hus200_trends/hus +2025-09-08 08:35:00,085 UTC [189237] INFO esmvalcore._task:295 Successfully completed task psl_trends/psl (priority 5) in 0:00:14.891503 +2025-09-08 08:35:00,278 UTC [188770] INFO esmvalcore._task:960 Progress: 4 tasks running, 5 tasks waiting for ancestors, 1/10 done +2025-09-08 08:35:00,299 UTC [189243] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:35:00,307 UTC [189243] INFO esmvalcore._task:289 Starting task psl_trends/plot in process [189243] +2025-09-08 08:35:00,310 UTC [189243] INFO esmvalcore._task:564 Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/psl_trends/plot/settings.yml'] +2025-09-08 08:35:00,310 UTC [189243] DEBUG esmvalcore._task:565 in environment +{'MPLBACKEND': 'Agg'} +2025-09-08 08:35:00,310 UTC [189243] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250908_083356/run/psl_trends/plot +2025-09-08 08:35:00,310 UTC [189243] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250908_083356/work/psl_trends/plot +2025-09-08 08:35:00,310 UTC [189243] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250908_083356/plots/psl_trends/plot +2025-09-08 08:35:00,310 UTC [189243] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250908_083356/run/psl_trends/plot/log.txt +2025-09-08 08:35:00,310 UTC [189243] INFO esmvalcore._task:580 To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/psl_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/psl_trends/plot/settings.yml +2025-09-08 08:35:00,378 UTC [188770] INFO esmvalcore._task:960 Progress: 5 tasks running, 4 tasks waiting for ancestors, 1/10 done +2025-09-08 08:35:00,827 UTC [189241] WARNING py.warnings:109 /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 101.64 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +2025-09-08 08:35:00,829 UTC [189241] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:35:11,059 UTC [189241] INFO esmvalcore.preprocessor._dask_progress:187 hus200_trends/hus [############ ] | 30% Completed | 10.23 s +2025-09-08 08:35:21,074 UTC [189241] INFO esmvalcore.preprocessor._dask_progress:187 hus200_trends/hus [###################### ] | 55% Completed | 20.25 s +2025-09-08 08:35:31,097 UTC [189241] INFO esmvalcore.preprocessor._dask_progress:187 hus200_trends/hus [###################################### ] | 96% Completed | 30.27 s +2025-09-08 08:35:33,000 UTC [189243] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.5 GB +2025-09-08 08:35:33,001 UTC [189243] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-08 08:35:33,001 UTC [189243] DEBUG esmvalcore._task:657 Script seaborn_diag.py completed successfully +2025-09-08 08:35:33,002 UTC [189243] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250908_083356/run/psl_trends/plot/diagnostic_provenance.yml +2025-09-08 08:35:33,367 UTC [189243] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-08 08:35:33,445 UTC [189243] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 280 +2025-09-08 08:35:33,446 UTC [189243] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 282 +2025-09-08 08:35:33,447 UTC [189243] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-08 08:35:33,471 UTC [189243] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 200 12011 +2025-09-08 08:35:33,473 UTC [189243] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-08 08:35:33,482 UTC [189243] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. HTTP/11" 302 266 +2025-09-08 08:35:33,483 UTC [189243] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. HTTP/11" 302 268 +2025-09-08 08:35:33,484 UTC [189243] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-08 08:35:33,497 UTC [189243] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. HTTP/11" 404 48 +2025-09-08 08:35:33,498 UTC [189243] WARNING esmvalcore._citation:162 Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. +2025-09-08 08:35:33,517 UTC [189243] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-09-08 08:35:33,517 UTC [189243] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-09-08 08:35:33,517 UTC [189243] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-09-08 08:35:33,517 UTC [189243] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 65536 +2025-09-08 08:35:34,453 UTC [189243] DEBUG esmvalcore._task:770 Collecting provenance of task psl_trends/plot took 1.5 seconds +2025-09-08 08:35:34,454 UTC [189243] INFO esmvalcore._task:295 Successfully completed task psl_trends/plot (priority 4) in 0:00:34.146770 +2025-09-08 08:35:34,629 UTC [188770] INFO esmvalcore._task:960 Progress: 4 tasks running, 4 tasks waiting for ancestors, 2/10 done +2025-09-08 08:35:35,101 UTC [189241] INFO esmvalcore.preprocessor._dask_progress:187 hus200_trends/hus [########################################] | 100% Completed | 34.27 s +2025-09-08 08:35:35,102 UTC [189241] DEBUG esmvalcore.preprocessor:755 Released save lock for task hus200_trends/hus +2025-09-08 08:35:35,102 UTC [189239] DEBUG esmvalcore.preprocessor:745 Acquired save lock for task ua200_trends/ua +2025-09-08 08:35:35,103 UTC [189239] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task ua200_trends/ua +2025-09-08 08:35:35,123 UTC [189241] INFO esmvalcore._task:295 Successfully completed task hus200_trends/hus (priority 9) in 0:00:49.928863 +2025-09-08 08:35:35,210 UTC [189239] WARNING py.warnings:109 /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 54.39 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +2025-09-08 08:35:35,212 UTC [189239] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:35:35,702 UTC [188770] INFO esmvalcore._task:960 Progress: 3 tasks running, 4 tasks waiting for ancestors, 3/10 done +2025-09-08 08:35:35,720 UTC [189245] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:35:35,805 UTC [188770] INFO esmvalcore._task:960 Progress: 4 tasks running, 3 tasks waiting for ancestors, 3/10 done +2025-09-08 08:35:35,823 UTC [189245] INFO esmvalcore._task:289 Starting task hus200_trends/plot in process [189245] +2025-09-08 08:35:35,826 UTC [189245] INFO esmvalcore._task:564 Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/hus200_trends/plot/settings.yml'] +2025-09-08 08:35:35,827 UTC [189245] DEBUG esmvalcore._task:565 in environment +{'MPLBACKEND': 'Agg'} +2025-09-08 08:35:35,827 UTC [189245] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250908_083356/run/hus200_trends/plot +2025-09-08 08:35:35,827 UTC [189245] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250908_083356/work/hus200_trends/plot +2025-09-08 08:35:35,827 UTC [189245] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250908_083356/plots/hus200_trends/plot +2025-09-08 08:35:35,827 UTC [189245] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250908_083356/run/hus200_trends/plot/log.txt +2025-09-08 08:35:35,827 UTC [189245] INFO esmvalcore._task:580 To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/hus200_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/hus200_trends/plot/settings.yml +2025-09-08 08:35:37,798 UTC [189239] INFO esmvalcore.preprocessor._dask_progress:187 ua200_trends/ua [########################################] | 100% Completed | 2.59 s +2025-09-08 08:35:37,799 UTC [189239] DEBUG esmvalcore.preprocessor:755 Released save lock for task ua200_trends/ua +2025-09-08 08:35:37,799 UTC [189233] DEBUG esmvalcore.preprocessor:745 Acquired save lock for task tas_trends/tas +2025-09-08 08:35:37,799 UTC [189233] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task tas_trends/tas +2025-09-08 08:35:37,806 UTC [189239] INFO esmvalcore._task:295 Successfully completed task ua200_trends/ua (priority 7) in 0:00:52.612125 +2025-09-08 08:35:37,922 UTC [189233] WARNING py.warnings:109 /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 54.65 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +2025-09-08 08:35:37,925 UTC [189233] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:35:37,972 UTC [188770] INFO esmvalcore._task:960 Progress: 3 tasks running, 3 tasks waiting for ancestors, 4/10 done +2025-09-08 08:35:37,992 UTC [189247] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:35:38,033 UTC [189247] INFO esmvalcore._task:289 Starting task ua200_trends/plot in process [189247] +2025-09-08 08:35:38,037 UTC [189247] INFO esmvalcore._task:564 Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/ua200_trends/plot/settings.yml'] +2025-09-08 08:35:38,037 UTC [189247] DEBUG esmvalcore._task:565 in environment +{'MPLBACKEND': 'Agg'} +2025-09-08 08:35:38,037 UTC [189247] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250908_083356/run/ua200_trends/plot +2025-09-08 08:35:38,037 UTC [189247] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250908_083356/work/ua200_trends/plot +2025-09-08 08:35:38,037 UTC [189247] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250908_083356/plots/ua200_trends/plot +2025-09-08 08:35:38,037 UTC [189247] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250908_083356/run/ua200_trends/plot/log.txt +2025-09-08 08:35:38,037 UTC [189247] INFO esmvalcore._task:580 To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/ua200_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/ua200_trends/plot/settings.yml +2025-09-08 08:35:38,093 UTC [188770] INFO esmvalcore._task:960 Progress: 4 tasks running, 2 tasks waiting for ancestors, 4/10 done +2025-09-08 08:35:42,177 UTC [189233] INFO esmvalcore.preprocessor._dask_progress:187 tas_trends/tas [########################################] | 100% Completed | 4.25 s +2025-09-08 08:35:42,179 UTC [189233] DEBUG esmvalcore.preprocessor:755 Released save lock for task tas_trends/tas +2025-09-08 08:35:42,179 UTC [189235] DEBUG esmvalcore.preprocessor:745 Acquired save lock for task pr_trends/pr +2025-09-08 08:35:42,179 UTC [189235] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task pr_trends/pr +2025-09-08 08:35:42,191 UTC [189233] INFO esmvalcore._task:295 Successfully completed task tas_trends/tas (priority 1) in 0:00:56.998586 +2025-09-08 08:35:42,337 UTC [188770] INFO esmvalcore._task:960 Progress: 3 tasks running, 2 tasks waiting for ancestors, 5/10 done +2025-09-08 08:35:42,359 UTC [189249] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:35:42,365 UTC [189249] INFO esmvalcore._task:289 Starting task tas_trends/plot in process [189249] +2025-09-08 08:35:42,368 UTC [189249] INFO esmvalcore._task:564 Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/tas_trends/plot/settings.yml'] +2025-09-08 08:35:42,368 UTC [189249] DEBUG esmvalcore._task:565 in environment +{'MPLBACKEND': 'Agg'} +2025-09-08 08:35:42,369 UTC [189249] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250908_083356/run/tas_trends/plot +2025-09-08 08:35:42,369 UTC [189249] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250908_083356/work/tas_trends/plot +2025-09-08 08:35:42,369 UTC [189249] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250908_083356/plots/tas_trends/plot +2025-09-08 08:35:42,369 UTC [189249] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250908_083356/run/tas_trends/plot/log.txt +2025-09-08 08:35:42,369 UTC [189249] INFO esmvalcore._task:580 To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/tas_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/tas_trends/plot/settings.yml +2025-09-08 08:35:42,438 UTC [188770] INFO esmvalcore._task:960 Progress: 4 tasks running, 1 tasks waiting for ancestors, 5/10 done +2025-09-08 08:35:43,006 UTC [189235] WARNING py.warnings:109 /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/distributed/client.py:3370: UserWarning: Sending large graph of size 102.23 MiB. +This may cause some slowdown. +Consider loading the data with Dask directly + or using futures or delayed objects to embed the data into the graph without repetition. +See also https://docs.dask.org/en/stable/best-practices.html#load-data-with-dask for more information. + warnings.warn( + +2025-09-08 08:35:43,009 UTC [189235] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:35:48,387 UTC [189245] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.5 GB +2025-09-08 08:35:48,389 UTC [189245] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-08 08:35:48,389 UTC [189245] DEBUG esmvalcore._task:657 Script seaborn_diag.py completed successfully +2025-09-08 08:35:48,390 UTC [189245] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250908_083356/run/hus200_trends/plot/diagnostic_provenance.yml +2025-09-08 08:35:48,642 UTC [189245] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-08 08:35:48,653 UTC [189245] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 280 +2025-09-08 08:35:48,655 UTC [189245] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 282 +2025-09-08 08:35:48,657 UTC [189245] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-08 08:35:48,681 UTC [189245] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 200 12011 +2025-09-08 08:35:48,699 UTC [189245] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-09-08 08:35:48,699 UTC [189245] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-09-08 08:35:48,699 UTC [189245] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-09-08 08:35:48,699 UTC [189245] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 65536 +2025-09-08 08:35:49,618 UTC [189245] DEBUG esmvalcore._task:770 Collecting provenance of task hus200_trends/plot took 1.2 seconds +2025-09-08 08:35:49,618 UTC [189245] INFO esmvalcore._task:295 Successfully completed task hus200_trends/plot (priority 8) in 0:00:13.795145 +2025-09-08 08:35:49,793 UTC [188770] INFO esmvalcore._task:960 Progress: 3 tasks running, 1 tasks waiting for ancestors, 6/10 done +2025-09-08 08:35:53,876 UTC [189235] INFO esmvalcore.preprocessor._dask_progress:187 pr_trends/pr [################## ] | 46% Completed | 10.87 s +2025-09-08 08:36:04,007 UTC [189235] INFO esmvalcore.preprocessor._dask_progress:187 pr_trends/pr [#################################### ] | 92% Completed | 21.00 s +2025-09-08 08:36:07,723 UTC [189249] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.4 GB +2025-09-08 08:36:07,724 UTC [189249] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-08 08:36:07,725 UTC [189249] DEBUG esmvalcore._task:657 Script seaborn_diag.py completed successfully +2025-09-08 08:36:07,725 UTC [189249] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250908_083356/run/tas_trends/plot/diagnostic_provenance.yml +2025-09-08 08:36:08,126 UTC [189249] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-08 08:36:08,137 UTC [189249] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 280 +2025-09-08 08:36:08,138 UTC [189249] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 282 +2025-09-08 08:36:08,139 UTC [189249] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-08 08:36:08,162 UTC [189249] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 200 12011 +2025-09-08 08:36:08,164 UTC [189249] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-08 08:36:08,173 UTC [189249] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. HTTP/11" 302 266 +2025-09-08 08:36:08,174 UTC [189249] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. HTTP/11" 302 268 +2025-09-08 08:36:08,175 UTC [189249] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-08 08:36:08,186 UTC [189249] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. HTTP/11" 404 48 +2025-09-08 08:36:08,187 UTC [189249] WARNING esmvalcore._citation:162 Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. +2025-09-08 08:36:08,210 UTC [189249] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-09-08 08:36:08,210 UTC [189249] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-09-08 08:36:08,210 UTC [189249] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-09-08 08:36:08,210 UTC [189249] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 65536 +2025-09-08 08:36:09,015 UTC [189235] INFO esmvalcore.preprocessor._dask_progress:187 pr_trends/pr [########################################] | 100% Completed | 26.01 s +2025-09-08 08:36:09,017 UTC [189235] DEBUG esmvalcore.preprocessor:755 Released save lock for task pr_trends/pr +2025-09-08 08:36:09,039 UTC [189235] INFO esmvalcore._task:295 Successfully completed task pr_trends/pr (priority 3) in 0:01:23.846871 +2025-09-08 08:36:09,155 UTC [189249] DEBUG esmvalcore._task:770 Collecting provenance of task tas_trends/plot took 1.4 seconds +2025-09-08 08:36:09,155 UTC [189249] INFO esmvalcore._task:295 Successfully completed task tas_trends/plot (priority 0) in 0:00:26.789789 +2025-09-08 08:36:09,302 UTC [188770] INFO esmvalcore._task:960 Progress: 2 tasks running, 1 tasks waiting for ancestors, 7/10 done +2025-09-08 08:36:09,320 UTC [189251] DEBUG asyncio:64 Using selector: EpollSelector +2025-09-08 08:36:09,327 UTC [189251] INFO esmvalcore._task:289 Starting task pr_trends/plot in process [189251] +2025-09-08 08:36:09,330 UTC [189251] INFO esmvalcore._task:564 Running command ['/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python', '/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py', '/executions/recipe_20250908_083356/run/pr_trends/plot/settings.yml'] +2025-09-08 08:36:09,330 UTC [189251] DEBUG esmvalcore._task:565 in environment +{'MPLBACKEND': 'Agg'} +2025-09-08 08:36:09,330 UTC [189251] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250908_083356/run/pr_trends/plot +2025-09-08 08:36:09,330 UTC [189251] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250908_083356/work/pr_trends/plot +2025-09-08 08:36:09,330 UTC [189251] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250908_083356/plots/pr_trends/plot +2025-09-08 08:36:09,330 UTC [189251] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250908_083356/run/pr_trends/plot/log.txt +2025-09-08 08:36:09,330 UTC [189251] INFO esmvalcore._task:580 To re-run this diagnostic script, run: +cd /executions/recipe_20250908_083356/run/pr_trends/plot; MPLBACKEND="Agg" /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvaltool/diag_scripts/seaborn_diag.py /executions/recipe_20250908_083356/run/pr_trends/plot/settings.yml +2025-09-08 08:36:09,402 UTC [188770] INFO esmvalcore._task:960 Progress: 2 tasks running, 0 tasks waiting for ancestors, 8/10 done +2025-09-08 08:36:09,596 UTC [189247] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.5 GB +2025-09-08 08:36:09,598 UTC [189247] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-08 08:36:09,598 UTC [189247] DEBUG esmvalcore._task:657 Script seaborn_diag.py completed successfully +2025-09-08 08:36:09,598 UTC [189247] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250908_083356/run/ua200_trends/plot/diagnostic_provenance.yml +2025-09-08 08:36:09,999 UTC [189247] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-08 08:36:10,010 UTC [189247] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 280 +2025-09-08 08:36:10,012 UTC [189247] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 282 +2025-09-08 08:36:10,013 UTC [189247] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-08 08:36:10,035 UTC [189247] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 200 12011 +2025-09-08 08:36:10,039 UTC [189247] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-08 08:36:10,047 UTC [189247] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. HTTP/11" 302 266 +2025-09-08 08:36:10,049 UTC [189247] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. HTTP/11" 302 268 +2025-09-08 08:36:10,050 UTC [189247] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-08 08:36:10,060 UTC [189247] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. HTTP/11" 404 48 +2025-09-08 08:36:10,061 UTC [189247] WARNING esmvalcore._citation:162 Error in the CMIP6 citation link: https://cera-www.dkrz.de/WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. +2025-09-08 08:36:10,118 UTC [189247] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-09-08 08:36:10,118 UTC [189247] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-09-08 08:36:10,118 UTC [189247] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-09-08 08:36:10,118 UTC [189247] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 65536 +2025-09-08 08:36:11,030 UTC [189247] DEBUG esmvalcore._task:770 Collecting provenance of task ua200_trends/plot took 1.4 seconds +2025-09-08 08:36:11,031 UTC [189247] INFO esmvalcore._task:295 Successfully completed task ua200_trends/plot (priority 6) in 0:00:32.997609 +2025-09-08 08:36:11,204 UTC [188770] INFO esmvalcore._task:960 Progress: 1 tasks running, 0 tasks waiting for ancestors, 9/10 done +2025-09-08 08:36:19,720 UTC [189251] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.5 GB +2025-09-08 08:36:19,722 UTC [189251] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-08 08:36:19,722 UTC [189251] DEBUG esmvalcore._task:657 Script seaborn_diag.py completed successfully +2025-09-08 08:36:19,723 UTC [189251] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250908_083356/run/pr_trends/plot/diagnostic_provenance.yml +2025-09-08 08:36:19,900 UTC [189251] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-09-08 08:36:19,912 UTC [189251] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 280 +2025-09-08 08:36:19,914 UTC [189251] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 302 282 +2025-09-08 08:36:19,915 UTC [189251] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-09-08 08:36:19,938 UTC [189251] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical HTTP/11" 200 12011 +2025-09-08 08:36:19,957 UTC [189251] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-09-08 08:36:19,957 UTC [189251] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-09-08 08:36:19,957 UTC [189251] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-09-08 08:36:19,957 UTC [189251] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 65536 +2025-09-08 08:36:20,880 UTC [189251] DEBUG esmvalcore._task:770 Collecting provenance of task pr_trends/plot took 1.2 seconds +2025-09-08 08:36:20,880 UTC [189251] INFO esmvalcore._task:295 Successfully completed task pr_trends/plot (priority 2) in 0:00:11.553297 +2025-09-08 08:36:20,910 UTC [188770] INFO esmvalcore._task:960 Progress: 0 tasks running, 0 tasks waiting for ancestors, 10/10 done +2025-09-08 08:36:20,910 UTC [188770] INFO esmvalcore._task:969 Successfully completed all tasks. +2025-09-08 08:36:21,858 UTC [188770] INFO esmvalcore._recipe.recipe:1201 Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250908_083356/run/recipe_filled.yml +2025-09-08 08:36:24,950 UTC [188770] INFO esmvalcore.experimental.recipe_output:280 Wrote recipe output to: +file:///executions/recipe_20250908_083356/index.html +2025-09-08 08:36:24,950 UTC [188770] INFO esmvalcore.experimental.recipe_output:250 It looks like you are connected to a remote machine via SSH. To show the output html file, you can try the following command on your local machine: +server=136.172.124.4 && port=31415 && ssh -t -L ${port}:localhost:${port} b381141@${server} /work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/bin/python -m http.server ${port} -d /executions/recipe_20250908_083356 +Then visit http://localhost:31415 in your browser +2025-09-08 08:36:24,950 UTC [188770] INFO esmvalcore.experimental.recipe_output:258 If the port 31415 is already in use, you can replace it with any other free one (e.g., 12789). If you are connected through a jump host, replace the server IP address 136.172.124.4 with your SSH server name +2025-09-08 08:36:24,950 UTC [188770] INFO esmvalcore._main:138 Ending the Earth System Model Evaluation Tool at time: 2025-09-08 08:36:24 UTC +2025-09-08 08:36:24,950 UTC [188770] INFO esmvalcore._main:142 Time for running the recipe was: 0:01:58.422936 +2025-09-08 08:36:25,209 UTC [188770] INFO esmvalcore._task:141 Maximum memory used (estimate): 105.1 GB +2025-09-08 08:36:25,210 UTC [188770] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-09-08 08:36:25,211 UTC [188770] INFO esmvalcore._main:518 Removing `preproc` directory containing preprocessed data +2025-09-08 08:36:25,211 UTC [188770] INFO esmvalcore._main:521 If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration +2025-09-08 08:36:25,212 UTC [188770] INFO esmvalcore._main:496 Run was successful diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/diagnostic_provenance.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/diagnostic_provenance.yml new file mode 100644 index 000000000..3dbb90d47 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/diagnostic_provenance.yml @@ -0,0 +1,11 @@ +? /executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot.png +: &id001 + ancestors: + - /executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc + - /executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc + - /executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc + authors: + - schlund_manuel + caption: Seaborn barplot for one or more dataset(s) +? /executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot.nc +: *id001 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/log.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/log.txt new file mode 100644 index 000000000..5ed54b4e7 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/log.txt @@ -0,0 +1,146 @@ +/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 + warnings.warn("ESMF installation version {}, ESMPy version {}".format( +INFO:esmvaltool.diag_scripts.shared._base:Starting diagnostic script plot with configuration: +add_aux_coords: true +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +facets_as_columns: +- dataset +input_data: + ? /executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc + : activity: CMIP + alias: CMIP6 + dataset: ACCESS-ESM1-5 + diagnostic: pr_trends + end_year: 2009 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Precipitation + mip: Amon + modeling_realm: + - atmos + preprocessor: trend_pr + project: CMIP6 + recipe_dataset_index: 2 + short_name: pr + standard_name: precipitation_flux + start_year: 1980 + timerange: 1980/2009 + units: mm kg m-3 day-1 yr-1 + variable_group: pr + version: v20191115 + ? /executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc + : alias: native6 + automatic_regrid: true + dataset: ERA5 + diagnostic: pr_trends + end_year: 2009 + family: E5 + filename: /executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc + frequency: mon + long_name: Precipitation + mip: Amon + modeling_realm: + - atmos + preprocessor: trend_pr + project: native6 + recipe_dataset_index: 1 + reference_for_metric: true + short_name: pr + standard_name: precipitation_flux + start_year: 1980 + tier: 3 + timerange: 1980/2009 + tres: 1M + type: reanaly + typeid: '00' + units: mm kg m-3 day-1 yr-1 + variable_group: pr + version: v1 + ? /executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc + : alias: obs4MIPs + dataset: GPCP-V2.3 + diagnostic: pr_trends + end_year: 2009 + filename: /executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc + frequency: mon + long_name: Precipitation + mip: Amon + modeling_realm: [] + preprocessor: trend_pr + project: obs4MIPs + recipe_dataset_index: 0 + reference_for_metric: true + short_name: pr + standard_name: precipitation_flux + start_year: 1980 + tier: 1 + timerange: 1980/2009 + units: mm kg m-3 day-1 yr-1 + variable_group: pr + version: v20180519 +input_files: +- /executions/recipe_20250908_083356/preproc/pr_trends/pr/metadata.yml +legend_title: Data +log_level: info +output_file_type: png +plot_dir: /executions/recipe_20250908_083356/plots/pr_trends/plot +plot_object_methods: + set_xlabel: region + set_ylabel: pr trend [mm kg m-3 day-1 yr-1] +recipe: recipe.yml +reset_index: true +run_dir: /executions/recipe_20250908_083356/run/pr_trends/plot +scheduler_address: tcp://127.0.0.1:41237 +script: plot +seaborn_func: barplot +seaborn_kwargs: + hue: dataset + x: shape_id + y: pr +seaborn_settings: + rc: + figure.figsize: + - 28 + - 6 + style: ticks +suptitle: Trend in Precipitation +version: 2.12.0 +work_dir: /executions/recipe_20250908_083356/work/pr_trends/plot +write_netcdf: true + +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/work/pr_trends/plot +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/plots/pr_trends/plot +INFO:seaborn_diag:Using plotting function seaborn.barplot +INFO:seaborn_diag:Grouping datasets by 'alias' to create main data frame (data frames are merged [combined along axis 1, i.e., columns] within groups, then concatenated [combined along axis 0, i.e., rows] across groups) +INFO:seaborn_diag:Adding aux_coords as columns +INFO:seaborn_diag:Adding facets as columns: ['dataset'] +INFO:seaborn_diag:Processing group 'CMIP6' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'pr' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Processing group 'native6' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'pr' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Processing group 'obs4MIPs' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'pr' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Successfully retrieved main data frame from input data +INFO:seaborn_diag:Creating plot with +seaborn.barplot( + data=main_data_frame, + x='shape_id', + y='pr', + hue='dataset', +) +INFO:esmvaltool.diag_scripts.shared.io:Wrote /executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot.nc +INFO:seaborn_diag:Wrote /executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot.png +INFO:esmvaltool.diag_scripts.shared._base:End of diagnostic script run. diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/resource_usage.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/resource_usage.txt new file mode 100644 index 000000000..1ea56952e --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/resource_usage.txt @@ -0,0 +1,10 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-09-08 08:36:10.397615 1.0 0.4 0 0.1 0 0.0 0.0 +2025-09-08 08:36:11.438971 2.1 0.9 46 0.1 0 0.0 0.0 +2025-09-08 08:36:12.479554 3.1 1.4 54 0.2 0 0.0 0.0 +2025-09-08 08:36:13.519725 4.2 2.1 62 0.2 0 0.0 0.0 +2025-09-08 08:36:14.559789 5.2 2.6 52 0.2 0 0.0 0.0 +2025-09-08 08:36:15.599917 6.2 3.2 53 0.3 0 0.0 0.0 +2025-09-08 08:36:16.639558 7.3 3.8 64 0.3 0 0.0 0.0 +2025-09-08 08:36:17.679936 8.3 4.8 90 0.5 0 0.0 0.0 +2025-09-08 08:36:18.720608 9.4 5.8 100 0.3 0 0.0 0.0 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/settings.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/settings.yml new file mode 100644 index 000000000..e2a9484e7 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/pr_trends/plot/settings.yml @@ -0,0 +1,33 @@ +seaborn_func: barplot +reset_index: true +write_netcdf: true +seaborn_kwargs: + x: shape_id + y: pr + hue: dataset +add_aux_coords: true +facets_as_columns: +- dataset +legend_title: Data +plot_object_methods: + set_xlabel: region + set_ylabel: pr trend [mm kg m-3 day-1 yr-1] +seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 +suptitle: Trend in Precipitation +recipe: recipe.yml +version: 2.12.0 +script: plot +run_dir: /executions/recipe_20250908_083356/run/pr_trends/plot +plot_dir: /executions/recipe_20250908_083356/plots/pr_trends/plot +work_dir: /executions/recipe_20250908_083356/work/pr_trends/plot +output_file_type: png +log_level: info +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +scheduler_address: tcp://127.0.0.1:41237 +input_files: +- /executions/recipe_20250908_083356/preproc/pr_trends/pr/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/diagnostic_provenance.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/diagnostic_provenance.yml new file mode 100644 index 000000000..e0a4407d4 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/diagnostic_provenance.yml @@ -0,0 +1,10 @@ +? /executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot.png +: &id001 + ancestors: + - /executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc + - /executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc + authors: + - schlund_manuel + caption: Seaborn barplot for one or more dataset(s) +? /executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot.nc +: *id001 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/log.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/log.txt new file mode 100644 index 000000000..000b8a954 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/log.txt @@ -0,0 +1,113 @@ +/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 + warnings.warn("ESMF installation version {}, ESMPy version {}".format( +INFO:esmvaltool.diag_scripts.shared._base:Starting diagnostic script plot with configuration: +add_aux_coords: true +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +facets_as_columns: +- dataset +input_data: + ? /executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc + : activity: CMIP + alias: CMIP6 + dataset: ACCESS-ESM1-5 + diagnostic: psl_trends + end_year: 2009 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Sea Level Pressure + mip: Amon + modeling_realm: + - atmos + preprocessor: trend_psl + project: CMIP6 + recipe_dataset_index: 1 + short_name: psl + standard_name: air_pressure_at_mean_sea_level + start_year: 1980 + timerange: 1980/2009 + units: m-1 kg s-2 yr-1 + variable_group: psl + version: v20191115 + ? /executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc + : alias: obs4MIPs + dataset: ERA-5 + diagnostic: psl_trends + end_year: 2009 + filename: /executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc + frequency: mon + long_name: Sea Level Pressure + mip: Amon + modeling_realm: [] + preprocessor: trend_psl + project: obs4MIPs + recipe_dataset_index: 0 + reference_for_metric: true' + short_name: psl + standard_name: air_pressure_at_mean_sea_level + start_year: 1980 + tier: 1 + timerange: 1980/2009 + units: m-1 kg s-2 yr-1 + variable_group: psl + version: v20250220 +input_files: +- /executions/recipe_20250908_083356/preproc/psl_trends/psl/metadata.yml +legend_title: Data +log_level: info +output_file_type: png +plot_dir: /executions/recipe_20250908_083356/plots/psl_trends/plot +plot_object_methods: + set_xlabel: region + set_ylabel: psl trend [m-1 kg s-2 yr-1] +recipe: recipe.yml +reset_index: true +run_dir: /executions/recipe_20250908_083356/run/psl_trends/plot +scheduler_address: tcp://127.0.0.1:41237 +script: plot +seaborn_func: barplot +seaborn_kwargs: + hue: dataset + x: shape_id + y: psl +seaborn_settings: + rc: + figure.figsize: + - 28 + - 6 + style: ticks +suptitle: Trend in Sea Level Pressure +version: 2.12.0 +work_dir: /executions/recipe_20250908_083356/work/psl_trends/plot +write_netcdf: true + +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/work/psl_trends/plot +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/plots/psl_trends/plot +INFO:seaborn_diag:Using plotting function seaborn.barplot +INFO:seaborn_diag:Grouping datasets by 'alias' to create main data frame (data frames are merged [combined along axis 1, i.e., columns] within groups, then concatenated [combined along axis 0, i.e., rows] across groups) +INFO:seaborn_diag:Adding aux_coords as columns +INFO:seaborn_diag:Adding facets as columns: ['dataset'] +INFO:seaborn_diag:Processing group 'CMIP6' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'psl' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Processing group 'obs4MIPs' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'psl' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Successfully retrieved main data frame from input data +INFO:seaborn_diag:Creating plot with +seaborn.barplot( + data=main_data_frame, + x='shape_id', + y='psl', + hue='dataset', +) +INFO:esmvaltool.diag_scripts.shared.io:Wrote /executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot.nc +INFO:seaborn_diag:Wrote /executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot.png +INFO:esmvaltool.diag_scripts.shared._base:End of diagnostic script run. diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/resource_usage.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/resource_usage.txt new file mode 100644 index 000000000..b93aa4789 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/resource_usage.txt @@ -0,0 +1,31 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-09-08 08:35:01.380208 1.0 0.5 0 0.1 0 0.0 0.0 +2025-09-08 08:35:02.423671 2.1 1.1 55 0.1 0 0.0 0.0 +2025-09-08 08:35:03.465016 3.1 1.6 45 0.2 0 0.0 0.0 +2025-09-08 08:35:04.506083 4.2 2.0 43 0.2 0 0.0 0.0 +2025-09-08 08:35:05.548418 5.2 2.1 7 0.2 0 0.002 0.0 +2025-09-08 08:35:06.594468 6.3 2.2 8 0.2 0 0.004 0.0 +2025-09-08 08:35:07.645136 7.3 2.2 3 0.2 0 0.005 0.0 +2025-09-08 08:35:08.694922 8.4 2.2 0 0.2 0 0.005 0.0 +2025-09-08 08:35:09.744129 9.4 2.3 5 0.2 0 0.006 0.0 +2025-09-08 08:35:10.794399 10.5 2.3 5 0.2 0 0.006 0.0 +2025-09-08 08:35:11.841960 11.5 2.4 6 0.2 0 0.007 0.0 +2025-09-08 08:35:12.893511 12.6 2.4 5 0.2 0 0.008 0.0 +2025-09-08 08:35:13.942724 13.6 2.5 7 0.2 0 0.008 0.0 +2025-09-08 08:35:14.999060 14.7 2.5 4 0.2 0 0.009 0.0 +2025-09-08 08:35:16.053401 15.7 2.5 2 0.2 0 0.009 0.0 +2025-09-08 08:35:17.110830 16.8 2.6 1 0.2 0 0.009 0.0 +2025-09-08 08:35:18.178403 17.8 2.6 5 0.2 0 0.01 0.0 +2025-09-08 08:35:19.238043 18.9 2.9 24 0.2 0 0.011 0.0 +2025-09-08 08:35:20.297101 20.0 3.0 17 0.2 0 0.011 0.0 +2025-09-08 08:35:21.363460 21.0 3.1 8 0.2 0 0.012 0.0 +2025-09-08 08:35:22.420891 22.1 3.8 60 0.3 0 0.012 0.0 +2025-09-08 08:35:23.482496 23.1 4.4 62 0.3 0 0.012 0.0 +2025-09-08 08:35:24.580567 24.2 4.7 27 0.3 0 0.014 0.0 +2025-09-08 08:35:25.663219 25.3 5.1 33 0.3 0 0.016 0.0 +2025-09-08 08:35:26.724869 26.4 5.8 63 0.5 0 0.018 0.0 +2025-09-08 08:35:27.780975 27.4 6.7 92 0.3 0 0.018 0.0 +2025-09-08 08:35:28.837483 28.5 7.7 94 0.3 0 0.018 0.0 +2025-09-08 08:35:29.893446 29.6 7.7 1 0.3 0 0.022 0.0 +2025-09-08 08:35:30.954497 30.6 7.7 1 0.3 0 0.025 0.0 +2025-09-08 08:35:32.000017 31.7 7.7 0 0.3 0 0.026 0.0 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/settings.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/settings.yml new file mode 100644 index 000000000..f4eb4d2d8 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/psl_trends/plot/settings.yml @@ -0,0 +1,33 @@ +seaborn_func: barplot +reset_index: true +write_netcdf: true +seaborn_kwargs: + x: shape_id + y: psl + hue: dataset +add_aux_coords: true +facets_as_columns: +- dataset +legend_title: Data +plot_object_methods: + set_xlabel: region + set_ylabel: psl trend [m-1 kg s-2 yr-1] +seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 +suptitle: Trend in Sea Level Pressure +recipe: recipe.yml +version: 2.12.0 +script: plot +run_dir: /executions/recipe_20250908_083356/run/psl_trends/plot +plot_dir: /executions/recipe_20250908_083356/plots/psl_trends/plot +work_dir: /executions/recipe_20250908_083356/work/psl_trends/plot +output_file_type: png +log_level: info +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +scheduler_address: tcp://127.0.0.1:41237 +input_files: +- /executions/recipe_20250908_083356/preproc/psl_trends/psl/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/recipe.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/recipe.yml new file mode 100644 index 000000000..0861dc7d6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/recipe.yml @@ -0,0 +1,537 @@ +documentation: + description: Box plot, linear trends for the 46 IPCC AR6 reference regions for land + (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot + function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + authors: + - schlund_manuel + - weigel_katja + maintainer: + - weigel_katja + title: Linear trends. +datasets: [] +preprocessors: + trend_tas: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: K yr-1 + trend_pr: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: mm kg m-3 day-1 yr-1 + trend_psl: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: m-1 kg s-2 yr-1 + trend_ua200: + custom_order: true + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: m s-1 yr-1 + trend_hus200: + custom_order: true + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: year-1 +diagnostics: + tas_trends: + variables: + tas: + preprocessor: trend_tas + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: tas + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: tas trend [K/yr] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Near-Surface Air Temperature + pr_trends: + variables: + pr: + preprocessor: trend_pr + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: pr + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: pr trend [mm kg m-3 day-1 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Precipitation + psl_trends: + variables: + psl: + preprocessor: trend_psl + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: psl + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: psl trend [m-1 kg s-2 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Sea Level Pressure + ua200_trends: + variables: + ua: + preprocessor: trend_ua200 + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: ua + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + plot_object_methods: + set_xlabel: region + set_ylabel: ua trend [m s-1 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Zonal Wind at 200 hPa + hus200_trends: + variables: + hus: + preprocessor: trend_hus200 + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: hus + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + plot_object_methods: + set_xlabel: region + set_ylabel: hus trend [yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Specific Humidity at 200 hPa diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/recipe_filled.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/recipe_filled.yml new file mode 100644 index 000000000..f7f744d21 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/recipe_filled.yml @@ -0,0 +1,513 @@ +documentation: + description: Box plot, linear trends for the 46 IPCC AR6 reference regions for land + (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot + function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + authors: + - schlund_manuel + - weigel_katja + maintainer: + - weigel_katja + title: Linear trends. +preprocessors: + trend_tas: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: K yr-1 + trend_pr: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: mm kg m-3 day-1 yr-1 + trend_psl: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: m-1 kg s-2 yr-1 + trend_ua200: + custom_order: true + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: m s-1 yr-1 + trend_hus200: + custom_order: true + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: year-1 + default: {} +diagnostics: + tas_trends: + variables: + tas: + preprocessor: trend_tas + mip: Amon + timerange: 1980/2009 + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: tas + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: tas trend [K/yr] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Near-Surface Air Temperature + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + version: v20250220 + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + pr_trends: + variables: + pr: + preprocessor: trend_pr + mip: Amon + timerange: 1980/2009 + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: pr + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: pr trend [mm kg m-3 day-1 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Precipitation + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + version: v20180519 + psl_trends: + variables: + psl: + preprocessor: trend_psl + mip: Amon + timerange: 1980/2009 + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: psl + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: psl trend [m-1 kg s-2 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Sea Level Pressure + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + version: v20250220 + ua200_trends: + variables: + ua: + preprocessor: trend_ua200 + mip: Amon + timerange: 1980/2009 + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: ua + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + plot_object_methods: + set_xlabel: region + set_ylabel: ua trend [m s-1 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Zonal Wind at 200 hPa + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + version: v20250220 + hus200_trends: + variables: + hus: + preprocessor: trend_hus200 + mip: Amon + timerange: 1980/2009 + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: hus + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + plot_object_methods: + set_xlabel: region + set_ylabel: hus trend [yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Specific Humidity at 200 hPa + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true +datasets: +- project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + version: v20191115 + supplementary_variables: + - mip: fx + short_name: areacella diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/resource_usage.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/resource_usage.txt new file mode 100644 index 000000000..040a98176 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/resource_usage.txt @@ -0,0 +1,131 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-09-08 08:33:59.523501 3.4 17.8 0 0.3 0 0.265 0.0 +2025-09-08 08:34:00.558527 4.4 17.9 5 0.3 0 0.265 0.0 +2025-09-08 08:34:01.594232 5.5 17.9 5 0.3 0 0.265 0.0 +2025-09-08 08:34:02.629770 6.5 18.0 6 0.3 0 0.265 0.0 +2025-09-08 08:34:03.664754 7.5 18.1 5 0.3 0 0.265 0.0 +2025-09-08 08:34:04.701882 8.6 18.1 5 0.3 0 0.266 0.0 +2025-09-08 08:34:05.737495 9.6 18.2 6 0.3 0 0.266 0.0 +2025-09-08 08:34:06.773181 10.6 18.2 7 0.3 0 0.267 0.0 +2025-09-08 08:34:07.809549 11.7 18.3 4 0.3 0 0.267 0.0 +2025-09-08 08:34:08.845152 12.7 18.3 5 0.3 0 0.267 0.0 +2025-09-08 08:34:09.882936 13.7 18.4 5 0.3 0 0.267 0.0 +2025-09-08 08:34:10.919317 14.8 18.4 6 0.3 0 0.268 0.0 +2025-09-08 08:34:11.954571 15.8 18.5 6 0.3 0 0.268 0.0 +2025-09-08 08:34:12.990472 16.9 18.6 6 0.3 0 0.269 0.0 +2025-09-08 08:34:14.026995 17.9 18.6 5 0.3 0 0.269 0.0 +2025-09-08 08:34:15.064550 18.9 18.7 5 0.3 0 0.269 0.0 +2025-09-08 08:34:16.099744 20.0 18.7 6 0.3 0 0.27 0.0 +2025-09-08 08:34:17.140152 21.0 18.8 10 0.3 0 0.271 0.0 +2025-09-08 08:34:18.736504 22.6 18.9 5 0.3 0 0.275 0.0 +2025-09-08 08:34:19.775735 23.6 18.9 5 0.3 0 0.276 0.0 +2025-09-08 08:34:20.815301 24.7 19.0 8 0.3 0 0.277 0.0 +2025-09-08 08:34:21.854862 25.7 19.1 6 0.3 0 0.278 0.0 +2025-09-08 08:34:22.892023 26.8 19.1 5 0.3 0 0.278 0.0 +2025-09-08 08:34:23.928126 27.8 19.2 4 0.3 0 0.279 0.0 +2025-09-08 08:34:24.984029 28.8 19.2 5 0.3 0 0.28 0.0 +2025-09-08 08:34:26.020175 29.9 19.3 5 0.3 0 0.28 0.0 +2025-09-08 08:34:27.056235 30.9 19.4 16 0.3 0 0.28 0.0 +2025-09-08 08:34:28.091018 32.0 19.5 7 0.3 0 0.28 0.0 +2025-09-08 08:34:29.128880 33.0 19.6 9 0.3 0 0.28 0.0 +2025-09-08 08:34:30.175154 34.0 19.6 5 0.3 0 0.28 0.0 +2025-09-08 08:34:31.212327 35.1 19.7 8 0.3 0 0.281 0.0 +2025-09-08 08:34:32.248218 36.1 19.8 6 0.3 0 0.281 0.0 +2025-09-08 08:34:33.287541 37.2 20.0 21 0.3 0 0.281 0.0 +2025-09-08 08:34:34.323399 38.2 20.1 9 0.3 0 0.282 0.0 +2025-09-08 08:34:35.371239 39.2 20.2 10 0.3 0 0.282 0.0 +2025-09-08 08:34:36.406247 40.3 20.3 11 0.3 0 0.283 0.0 +2025-09-08 08:34:37.441818 41.3 20.4 5 0.3 0 0.283 0.0 +2025-09-08 08:34:38.478007 42.3 20.4 7 0.3 0 0.283 0.0 +2025-09-08 08:34:39.513136 43.4 20.5 7 0.3 0 0.284 0.0 +2025-09-08 08:34:40.548393 44.4 20.6 5 0.3 0 0.284 0.0 +2025-09-08 08:34:41.631877 45.5 20.7 17 0.3 0 0.284 0.0 +2025-09-08 08:34:42.683277 46.5 32.7 55 1.3 1 0.284 0.0 +2025-09-08 08:34:43.735705 47.6 44.5 9 2.2 1 0.284 0.0 +2025-09-08 08:34:44.799351 48.7 55.2 13 3.3 1 0.284 0.0 +2025-09-08 08:34:45.858168 49.7 56.4 32 6.2 2 0.331 0.0 +2025-09-08 08:34:46.913747 50.8 58.9 17 6.3 2 0.439 0.0 +2025-09-08 08:34:47.965236 51.8 61.4 16 6.3 3 0.56 0.0 +2025-09-08 08:34:49.021749 52.9 62.9 17 6.3 3 0.567 0.0 +2025-09-08 08:34:50.082808 53.9 64.5 18 6.4 3 0.567 0.0 +2025-09-08 08:34:51.137467 55.0 66.1 18 6.4 3 0.568 0.0 +2025-09-08 08:34:52.189706 56.1 67.7 16 6.4 3 0.568 0.0 +2025-09-08 08:34:53.261736 57.1 74.8 44 7.0 3 0.569 0.0 +2025-09-08 08:34:54.322456 58.2 93.5 18 8.5 3 0.571 0.0 +2025-09-08 08:34:55.388046 59.3 106.0 18 9.4 4 0.572 0.0 +2025-09-08 08:34:56.562343 60.4 120.7 44 10.6 4 0.575 0.0 +2025-09-08 08:34:57.619480 61.5 123.1 29 10.5 4 0.575 0.0 +2025-09-08 08:34:58.676882 62.5 124.6 17 10.6 4 0.575 0.0 +2025-09-08 08:34:59.730994 63.6 126.2 19 10.7 4 0.575 0.0 +2025-09-08 08:35:00.786457 64.6 127.7 21 10.7 4 0.575 0.0 +2025-09-08 08:35:02.353805 66.2 133.9 95 12.8 5 2.188 0.0 +2025-09-08 08:35:03.419707 67.3 156.4 32 13.5 5 7.853 0.0 +2025-09-08 08:35:04.488595 68.4 178.4 31 16.0 6 12.321 0.0 +2025-09-08 08:35:05.581786 69.4 205.2 52 29.8 12 15.123 0.0 +2025-09-08 08:35:06.685080 70.5 226.8 37 42.7 17 15.704 0.0 +2025-09-08 08:35:07.792018 71.7 260.2 59 51.7 21 15.704 0.0 +2025-09-08 08:35:08.890060 72.8 288.6 46 53.1 21 16.054 0.0 +2025-09-08 08:35:09.975950 73.8 317.2 40 52.1 21 17.154 0.0 +2025-09-08 08:35:11.080021 74.9 343.2 47 58.3 23 17.431 0.0 +2025-09-08 08:35:12.165298 76.0 370.1 40 62.0 25 17.432 0.0 +2025-09-08 08:35:13.276931 77.1 402.5 42 72.3 29 17.433 0.0 +2025-09-08 08:35:14.406114 78.3 442.6 52 72.7 29 17.433 0.0 +2025-09-08 08:35:15.531386 79.4 487.5 63 63.6 25 18.431 0.0 +2025-09-08 08:35:16.870529 80.7 518.2 64 64.0 25 19.337 0.0 +2025-09-08 08:35:18.030304 81.9 560.6 60 66.8 27 19.901 0.0 +2025-09-08 08:35:19.185402 83.0 589.6 42 62.3 25 22.387 0.0 +2025-09-08 08:35:20.309696 84.2 622.3 50 66.3 26 22.45 0.0 +2025-09-08 08:35:21.418359 85.3 653.8 46 67.8 27 22.451 0.0 +2025-09-08 08:35:22.631800 86.5 686.4 56 71.8 29 22.451 0.0 +2025-09-08 08:35:24.065148 87.9 753.7 75 80.5 32 22.452 0.0 +2025-09-08 08:35:25.297539 89.2 822.7 71 68.1 27 22.455 0.0 +2025-09-08 08:35:26.505765 90.4 891.0 68 59.1 24 22.457 0.0 +2025-09-08 08:35:27.756382 91.6 960.8 73 50.2 20 22.457 0.0 +2025-09-08 08:35:29.036407 92.9 1033.0 69 45.1 18 22.458 0.0 +2025-09-08 08:35:30.227350 94.1 1099.3 67 39.4 16 22.463 0.0 +2025-09-08 08:35:31.450875 95.3 1154.6 87 19.8 8 22.465 0.0 +2025-09-08 08:35:32.521849 96.4 1159.0 27 10.8 4 22.49 0.0 +2025-09-08 08:35:33.585076 97.4 1161.1 19 10.9 4 22.491 0.0 +2025-09-08 08:35:34.646727 98.5 1163.9 21 10.9 4 22.491 0.0 +2025-09-08 08:35:36.186961 100.0 1167.0 76 11.1 4 22.491 0.0 +2025-09-08 08:35:37.257703 101.1 1170.1 32 11.0 4 22.498 0.0 +2025-09-08 08:35:38.800682 102.7 1175.5 64 11.6 5 22.498 0.0 +2025-09-08 08:35:39.873024 103.7 1180.2 27 11.3 4 22.499 0.0 +2025-09-08 08:35:40.935198 104.8 1182.3 19 11.3 4 22.5 0.0 +2025-09-08 08:35:41.994609 105.9 1184.3 18 11.4 5 22.5 0.0 +2025-09-08 08:35:43.059751 106.9 1187.3 22 11.7 5 22.5 0.0 +2025-09-08 08:35:45.307983 109.2 1203.8 100 18.7 7 22.929 0.0 +2025-09-08 08:35:46.415064 110.3 1249.5 84 58.7 23 23.088 0.0 +2025-09-08 08:35:47.516593 111.4 1292.8 52 79.9 32 23.088 0.0 +2025-09-08 08:35:48.619380 112.5 1335.2 48 96.9 39 23.097 0.0 +2025-09-08 08:35:49.737885 113.6 1381.8 54 105.1 42 23.097 0.0 +2025-09-08 08:35:50.898934 114.8 1440.1 66 104.1 41 23.097 0.0 +2025-09-08 08:35:52.069741 115.9 1497.3 70 87.7 35 23.097 0.0 +2025-09-08 08:35:53.260858 117.1 1550.6 74 80.3 32 23.097 0.0 +2025-09-08 08:35:54.584571 118.4 1605.5 75 81.0 32 23.097 0.0 +2025-09-08 08:35:55.804965 119.7 1665.0 80 74.5 30 23.097 0.0 +2025-09-08 08:35:57.210793 121.1 1737.2 87 66.7 26 23.097 0.0 +2025-09-08 08:35:58.652459 122.5 1815.4 88 57.9 23 23.097 0.0 +2025-09-08 08:36:00.104581 124.0 1893.6 92 48.7 19 23.097 0.0 +2025-09-08 08:36:01.336194 125.2 1934.9 96 47.0 19 23.097 0.0 +2025-09-08 08:36:02.573319 126.4 2002.1 83 38.2 15 23.097 0.0 +2025-09-08 08:36:03.881806 127.7 2073.7 84 30.9 12 23.097 0.0 +2025-09-08 08:36:05.067169 128.9 2110.9 96 13.4 5 23.097 0.0 +2025-09-08 08:36:06.130559 130.0 2117.1 25 12.0 5 23.097 0.0 +2025-09-08 08:36:07.188771 131.1 2120.4 18 12.0 5 23.097 0.0 +2025-09-08 08:36:08.247431 132.1 2123.0 19 11.9 5 23.097 0.0 +2025-09-08 08:36:09.397448 133.3 2125.3 44 11.3 4 23.097 0.0 +2025-09-08 08:36:10.458943 134.3 2126.9 18 11.4 5 23.097 0.0 +2025-09-08 08:36:11.520328 135.4 2128.5 20 11.4 5 23.097 0.0 +2025-09-08 08:36:12.580079 136.4 2129.6 17 11.5 5 23.097 0.0 +2025-09-08 08:36:13.637593 137.5 2130.9 18 11.5 5 23.097 0.0 +2025-09-08 08:36:14.696974 138.6 2132.0 18 11.6 5 23.097 0.0 +2025-09-08 08:36:15.756004 139.6 2133.0 18 11.6 5 23.097 0.0 +2025-09-08 08:36:16.827096 140.7 2134.2 20 11.6 5 23.097 0.0 +2025-09-08 08:36:17.882320 141.7 2135.9 18 11.8 5 23.097 0.0 +2025-09-08 08:36:18.940522 142.8 2136.4 18 11.3 4 23.097 0.0 +2025-09-08 08:36:20.000892 143.9 2137.1 18 11.3 4 23.097 0.0 +2025-09-08 08:36:21.076870 144.9 2140.1 22 8.0 3 23.414 0.0 +2025-09-08 08:36:22.124654 146.0 2140.2 15 0.6 0 45.875 0.0 +2025-09-08 08:36:23.168202 147.0 2140.3 5 0.6 0 45.875 0.0 +2025-09-08 08:36:24.209874 148.1 2140.4 11 0.6 0 45.876 0.0 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/diagnostic_provenance.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/diagnostic_provenance.yml new file mode 100644 index 000000000..46949927b --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/diagnostic_provenance.yml @@ -0,0 +1,11 @@ +? /executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot.png +: &id001 + ancestors: + - /executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc + - /executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc + - /executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc + authors: + - schlund_manuel + caption: Seaborn barplot for one or more dataset(s) +? /executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot.nc +: *id001 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/log.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/log.txt new file mode 100644 index 000000000..7e58362fe --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/log.txt @@ -0,0 +1,141 @@ +/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 + warnings.warn("ESMF installation version {}, ESMPy version {}".format( +INFO:esmvaltool.diag_scripts.shared._base:Starting diagnostic script plot with configuration: +add_aux_coords: true +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +facets_as_columns: +- dataset +input_data: + ? /executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc + : activity: CMIP + alias: CMIP6 + dataset: ACCESS-ESM1-5 + diagnostic: tas_trends + end_year: 2009 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: trend_tas + project: CMIP6 + recipe_dataset_index: 2 + short_name: tas + standard_name: air_temperature + start_year: 1980 + timerange: 1980/2009 + units: K yr-1 + variable_group: tas + version: v20191115 + ? /executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc + : alias: OBS + dataset: HadCRUT5 + diagnostic: tas_trends + end_year: 2009 + filename: /executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc + frequency: mon + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: trend_tas + project: OBS + recipe_dataset_index: 0 + short_name: tas + standard_name: air_temperature + start_year: 1980 + tier: 2 + timerange: 1980/2009 + type: ground + units: K yr-1 + variable_group: tas + version: 5.0.1.0-analysis + ? /executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc + : alias: obs4MIPs + dataset: ERA-5 + diagnostic: tas_trends + end_year: 2009 + filename: /executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc + frequency: mon + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: [] + preprocessor: trend_tas + project: obs4MIPs + recipe_dataset_index: 1 + reference_for_metric: true' + short_name: tas + standard_name: air_temperature + start_year: 1980 + tier: 1 + timerange: 1980/2009 + units: K yr-1 + variable_group: tas + version: v20250220 +input_files: +- /executions/recipe_20250908_083356/preproc/tas_trends/tas/metadata.yml +legend_title: Data +log_level: info +output_file_type: png +plot_dir: /executions/recipe_20250908_083356/plots/tas_trends/plot +plot_object_methods: + set_xlabel: region + set_ylabel: tas trend [K/yr] +recipe: recipe.yml +reset_index: true +run_dir: /executions/recipe_20250908_083356/run/tas_trends/plot +scheduler_address: tcp://127.0.0.1:41237 +script: plot +seaborn_func: barplot +seaborn_kwargs: + hue: dataset + x: shape_id + y: tas +seaborn_settings: + rc: + figure.figsize: + - 28 + - 6 + style: ticks +suptitle: Trend in Near-Surface Air Temperature +version: 2.12.0 +work_dir: /executions/recipe_20250908_083356/work/tas_trends/plot +write_netcdf: true + +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/work/tas_trends/plot +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/plots/tas_trends/plot +INFO:seaborn_diag:Using plotting function seaborn.barplot +INFO:seaborn_diag:Grouping datasets by 'alias' to create main data frame (data frames are merged [combined along axis 1, i.e., columns] within groups, then concatenated [combined along axis 0, i.e., rows] across groups) +INFO:seaborn_diag:Adding aux_coords as columns +INFO:seaborn_diag:Adding facets as columns: ['dataset'] +INFO:seaborn_diag:Processing group 'CMIP6' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'tas' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Processing group 'OBS' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'tas' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Processing group 'obs4MIPs' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'tas' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Successfully retrieved main data frame from input data +INFO:seaborn_diag:Creating plot with +seaborn.barplot( + data=main_data_frame, + x='shape_id', + y='tas', + hue='dataset', +) +INFO:esmvaltool.diag_scripts.shared.io:Wrote /executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot.nc +INFO:seaborn_diag:Wrote /executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot.png +INFO:esmvaltool.diag_scripts.shared._base:End of diagnostic script run. diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/resource_usage.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/resource_usage.txt new file mode 100644 index 000000000..2d22861ff --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/resource_usage.txt @@ -0,0 +1,24 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-09-08 08:35:43.440918 1.0 0.5 0 0.1 0 0.0 0.0 +2025-09-08 08:35:44.484403 2.1 0.9 36 0.1 0 0.0 0.0 +2025-09-08 08:35:45.542586 3.1 1.4 46 0.2 0 0.0 0.0 +2025-09-08 08:35:46.603255 4.2 2.0 61 0.2 0 0.0 0.0 +2025-09-08 08:35:47.655573 5.3 2.7 61 0.2 0 0.0 0.0 +2025-09-08 08:35:48.706955 6.3 3.2 48 0.3 0 0.0 0.0 +2025-09-08 08:35:49.764352 7.4 3.8 62 0.3 0 0.0 0.0 +2025-09-08 08:35:50.829924 8.4 4.6 70 0.3 0 0.0 0.0 +2025-09-08 08:35:51.891327 9.5 4.8 23 0.3 0 0.0 0.0 +2025-09-08 08:35:52.950711 10.6 4.8 0 0.3 0 0.0 0.0 +2025-09-08 08:35:54.004355 11.6 4.8 1 0.3 0 0.0 0.0 +2025-09-08 08:35:55.061566 12.7 4.8 0 0.3 0 0.0 0.0 +2025-09-08 08:35:56.119859 13.7 4.8 1 0.3 0 0.0 0.0 +2025-09-08 08:35:57.178558 14.8 4.8 0 0.3 0 0.0 0.0 +2025-09-08 08:35:58.235134 15.8 4.8 0 0.3 0 0.0 0.0 +2025-09-08 08:35:59.307684 16.9 4.8 0 0.3 0 0.0 0.0 +2025-09-08 08:36:00.392352 18.0 4.8 0 0.3 0 0.0 0.0 +2025-09-08 08:36:01.450855 19.1 4.8 1 0.3 0 0.0 0.0 +2025-09-08 08:36:02.503882 20.1 4.8 0 0.3 0 0.0 0.0 +2025-09-08 08:36:03.576793 21.2 4.8 0 0.3 0 0.0 0.0 +2025-09-08 08:36:04.628804 22.2 4.8 0 0.3 0 0.0 0.0 +2025-09-08 08:36:05.677292 23.3 5.5 63 0.4 0 0.0 0.0 +2025-09-08 08:36:06.723245 24.3 6.5 98 0.3 0 0.0 0.0 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/settings.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/settings.yml new file mode 100644 index 000000000..b74039bfc --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/tas_trends/plot/settings.yml @@ -0,0 +1,33 @@ +seaborn_func: barplot +reset_index: true +write_netcdf: true +seaborn_kwargs: + x: shape_id + y: tas + hue: dataset +add_aux_coords: true +facets_as_columns: +- dataset +legend_title: Data +plot_object_methods: + set_xlabel: region + set_ylabel: tas trend [K/yr] +seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 +suptitle: Trend in Near-Surface Air Temperature +recipe: recipe.yml +version: 2.12.0 +script: plot +run_dir: /executions/recipe_20250908_083356/run/tas_trends/plot +plot_dir: /executions/recipe_20250908_083356/plots/tas_trends/plot +work_dir: /executions/recipe_20250908_083356/work/tas_trends/plot +output_file_type: png +log_level: info +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +scheduler_address: tcp://127.0.0.1:41237 +input_files: +- /executions/recipe_20250908_083356/preproc/tas_trends/tas/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/diagnostic_provenance.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/diagnostic_provenance.yml new file mode 100644 index 000000000..7059aeae0 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/diagnostic_provenance.yml @@ -0,0 +1,10 @@ +? /executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot.png +: &id001 + ancestors: + - /executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc + - /executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc + authors: + - schlund_manuel + caption: Seaborn barplot for one or more dataset(s) +? /executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot.nc +: *id001 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/log.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/log.txt new file mode 100644 index 000000000..36f2d3476 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/log.txt @@ -0,0 +1,112 @@ +/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmpy/interface/loadESMF.py:94: VersionWarning: ESMF installation version 8.8.0, ESMPy version 8.8.0b0 + warnings.warn("ESMF installation version {}, ESMPy version {}".format( +INFO:esmvaltool.diag_scripts.shared._base:Starting diagnostic script plot with configuration: +add_aux_coords: true +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +facets_as_columns: +- dataset +input_data: + ? /executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc + : activity: CMIP + alias: CMIP6 + dataset: ACCESS-ESM1-5 + diagnostic: ua200_trends + end_year: 2009 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Eastward Wind + mip: Amon + modeling_realm: + - atmos + preprocessor: trend_ua200 + project: CMIP6 + recipe_dataset_index: 1 + short_name: ua + standard_name: eastward_wind + start_year: 1980 + timerange: 1980/2009 + units: m s-1 yr-1 + variable_group: ua + version: v20191115 + ? /executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc + : alias: obs4MIPs + dataset: ERA-5 + diagnostic: ua200_trends + end_year: 2009 + filename: /executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc + frequency: mon + long_name: Eastward Wind + mip: Amon + modeling_realm: [] + preprocessor: trend_ua200 + project: obs4MIPs + recipe_dataset_index: 0 + reference_for_metric: true' + short_name: ua + standard_name: eastward_wind + start_year: 1980 + tier: 1 + timerange: 1980/2009 + units: m s-1 yr-1 + variable_group: ua + version: v20250220 +input_files: +- /executions/recipe_20250908_083356/preproc/ua200_trends/ua/metadata.yml +log_level: info +output_file_type: png +plot_dir: /executions/recipe_20250908_083356/plots/ua200_trends/plot +plot_object_methods: + set_xlabel: region + set_ylabel: ua trend [m s-1 yr-1] +recipe: recipe.yml +reset_index: true +run_dir: /executions/recipe_20250908_083356/run/ua200_trends/plot +scheduler_address: tcp://127.0.0.1:41237 +script: plot +seaborn_func: barplot +seaborn_kwargs: + hue: dataset + x: shape_id + y: ua +seaborn_settings: + rc: + figure.figsize: + - 28 + - 6 + style: ticks +suptitle: Trend in Zonal Wind at 200 hPa +version: 2.12.0 +work_dir: /executions/recipe_20250908_083356/work/ua200_trends/plot +write_netcdf: true + +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/work/ua200_trends/plot +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250908_083356/plots/ua200_trends/plot +INFO:seaborn_diag:Using plotting function seaborn.barplot +INFO:seaborn_diag:Grouping datasets by 'alias' to create main data frame (data frames are merged [combined along axis 1, i.e., columns] within groups, then concatenated [combined along axis 0, i.e., rows] across groups) +INFO:seaborn_diag:Adding aux_coords as columns +INFO:seaborn_diag:Adding facets as columns: ['dataset'] +INFO:seaborn_diag:Processing group 'CMIP6' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'ua' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Processing group 'obs4MIPs' +INFO:seaborn_diag:Reading /executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc +WARNING:py.warnings:/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/iris/fileformats/_nc_load_rules/helpers.py:453: UnknownCellMethodWarning: NetCDF variable 'ua' contains unknown cell method 'trend' + warnings.warn(msg, category=UnknownCellMethodWarning) + +INFO:seaborn_diag:Successfully retrieved main data frame from input data +INFO:seaborn_diag:Creating plot with +seaborn.barplot( + data=main_data_frame, + x='shape_id', + y='ua', + hue='dataset', +) +INFO:esmvaltool.diag_scripts.shared.io:Wrote /executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot.nc +INFO:seaborn_diag:Wrote /executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot.png +INFO:esmvaltool.diag_scripts.shared._base:End of diagnostic script run. diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/resource_usage.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/resource_usage.txt new file mode 100644 index 000000000..f04a25049 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/resource_usage.txt @@ -0,0 +1,30 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-09-08 08:35:39.112229 1.0 0.5 0 0.1 0 0.0 0.0 +2025-09-08 08:35:40.154921 2.1 0.9 38 0.1 0 0.0 0.0 +2025-09-08 08:35:41.196418 3.1 1.4 45 0.2 0 0.0 0.0 +2025-09-08 08:35:42.237841 4.2 2.0 62 0.2 0 0.0 0.0 +2025-09-08 08:35:43.278966 5.2 2.6 55 0.2 0 0.0 0.0 +2025-09-08 08:35:44.319246 6.3 3.0 36 0.3 0 0.0 0.0 +2025-09-08 08:35:45.385420 7.3 3.5 52 0.3 0 0.0 0.0 +2025-09-08 08:35:46.437015 8.4 4.2 57 0.3 0 0.0 0.0 +2025-09-08 08:35:47.486586 9.4 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:35:48.560553 10.5 4.2 1 0.3 0 0.0 0.0 +2025-09-08 08:35:49.628259 11.6 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:35:50.683583 12.6 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:35:51.733966 13.7 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:35:52.786701 14.7 4.2 1 0.3 0 0.0 0.0 +2025-09-08 08:35:53.836032 15.8 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:35:54.891129 16.8 4.2 1 0.3 0 0.0 0.0 +2025-09-08 08:35:55.951208 17.9 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:35:57.009368 18.9 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:35:58.073032 20.0 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:35:59.130565 21.1 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:36:00.187519 22.1 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:36:01.248544 23.2 4.2 1 0.3 0 0.0 0.0 +2025-09-08 08:36:02.306859 24.2 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:36:03.362711 25.3 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:36:04.413045 26.3 4.2 0 0.3 0 0.0 0.0 +2025-09-08 08:36:05.462092 27.4 4.4 24 0.3 0 0.0 0.0 +2025-09-08 08:36:06.507353 28.4 4.5 1 0.3 0 0.0 0.0 +2025-09-08 08:36:07.551771 29.5 4.5 0 0.3 0 0.0 0.0 +2025-09-08 08:36:08.596517 30.5 5.3 79 0.5 0 0.0 0.0 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/settings.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/settings.yml new file mode 100644 index 000000000..2f45439b8 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/run/ua200_trends/plot/settings.yml @@ -0,0 +1,32 @@ +seaborn_func: barplot +reset_index: true +write_netcdf: true +seaborn_kwargs: + x: shape_id + y: ua + hue: dataset +add_aux_coords: true +facets_as_columns: +- dataset +plot_object_methods: + set_xlabel: region + set_ylabel: ua trend [m s-1 yr-1] +seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 +suptitle: Trend in Zonal Wind at 200 hPa +recipe: recipe.yml +version: 2.12.0 +script: plot +run_dir: /executions/recipe_20250908_083356/run/ua200_trends/plot +plot_dir: /executions/recipe_20250908_083356/plots/ua200_trends/plot +work_dir: /executions/recipe_20250908_083356/work/ua200_trends/plot +output_file_type: png +log_level: info +auxiliary_data_dir: /home/b/b381141/auxiliary_data2 +scheduler_address: tcp://127.0.0.1:41237 +input_files: +- /executions/recipe_20250908_083356/preproc/ua200_trends/ua/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot.nc b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot.nc new file mode 100644 index 000000000..6488611c3 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot.nc differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..75dcd84a9 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,2 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..2b6b08c1d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,563 @@ + + + + CF-1.6 + 2021-02-16 11:45:48 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1983, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:11:11 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613470230.650301-16746-16-5d25dc8e-8e88-4137-b62f-58e5d0aadd59.nc /cache/tmp/5d25dc8e-8e88-4137-b62f-58e5d0aadd59-adaptor.mars.internal-1613470230.6508858-16746-4-tmp.grib + + + + + + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + {'set_xlabel': 'region', 'set_ylabel': 'hus trend [yr-1]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'hus', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Specific Humidity at 200 hPa + True + + + + + + + + CF-1.6 + 2021-02-16 11:45:56 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1985, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:01:10 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1613469626.1982696-357-11-608caabe-5eb0-4ff0-9ce0-999607e35a90.nc /cache/tmp/608caabe-5eb0-4ff0-9ce0-999607e35a90-adaptor.mars.internal-1613469626.198831-357-3-tmp.grib + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + CF-1.6 + 2021-02-16 11:45:56 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1991, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:08:28 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613470065.2036326-25414-9-9d51e229-2c3a-4c49-8db0-9826e7c34e34.nc /cache/tmp/9d51e229-2c3a-4c49-8db0-9826e7c34e34-adaptor.mars.internal-1613470065.2042449-25414-5-tmp.grib + + + + + + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + CF-1.6 + 2021-02-16 11:52:03 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2006, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:04:50 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1613469849.7102869-13974-28-bdf3c48e-b3fb-4d1c-9b7a-18fee24bfa73.nc /cache/tmp/bdf3c48e-b3fb-4d1c-9b7a-18fee24bfa73-adaptor.mars.internal-1613469849.7109506-13974-9-tmp.grib + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:52:10 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2007, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:11:47 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1613470266.123197-22378-12-a7a67121-6a01-47b1-b95f-77182bda2b8c.nc /cache/tmp/a7a67121-6a01-47b1-b95f-77182bda2b8c-adaptor.mars.internal-1613470266.1237435-22378-5-tmp.grib + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:51:09 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2009, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:03:45 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613469783.381963-12188-26-86a05c17-3c96-4c17-801a-b25f3fb365bb.nc /cache/tmp/86a05c17-3c96-4c17-801a-b25f3fb365bb-adaptor.mars.internal-1613469783.382495-12188-7-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:22 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1994, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:03:03 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1613469735.874031-10155-11-2c420756-3216-4e8b-a0cb-e294f60b0b95.nc /cache/tmp/2c420756-3216-4e8b-a0cb-e294f60b0b95-adaptor.mars.internal-1613469735.8894975-10155-2-tmp.grib + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:51:56 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2004, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:05:46 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613469901.634478-30491-14-8a488d54-f4b4-4c64-9b41-6de1146b35d1.nc /cache/tmp/8a488d54-f4b4-4c64-9b41-6de1146b35d1-adaptor.mars.internal-1613469901.635564-30491-4-tmp.grib + + + + + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + CF-1.6 + 2021-02-16 11:44:07 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2000, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:10:54 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613470213.6553254-11252-1-1181fdf8-e0f3-4484-8a64-4d7d97546769.nc /cache/tmp/1181fdf8-e0f3-4484-8a64-4d7d97546769-adaptor.mars.internal-1613470213.6572726-11252-1-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:56 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1992, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:02:58 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613469736.4523153-26906-36-37296583-b665-4e94-92d8-58f42264d808.nc /cache/tmp/37296583-b665-4e94-92d8-58f42264d808-adaptor.mars.internal-1613469736.4528513-26906-13-tmp.grib + + + CF-1.6 + 2021-02-16 11:45:13 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1981, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:06:42 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613469958.3069067-30174-23-f8345172-ca12-4a55-bf98-c3967045d3cb.nc /cache/tmp/f8345172-ca12-4a55-bf98-c3967045d3cb-adaptor.mars.internal-1613469958.3075147-30174-8-tmp.grib + + + CF-1.6 + 2021-02-16 11:43:49 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1996, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:03:53 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data4/adaptor.mars.internal-1613469789.6651168-8291-9-9abdc6ef-bbb2-456b-8470-79f01fadc978.nc /cache/tmp/9abdc6ef-bbb2-456b-8470-79f01fadc978-adaptor.mars.internal-1613469789.6657233-8291-3-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:44:00 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1999, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:02:05 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613469683.6556232-2910-3-414eaa94-1610-4575-b98f-15954e22a2cf.nc /cache/tmp/414eaa94-1610-4575-b98f-15954e22a2cf-adaptor.mars.internal-1613469683.6566203-2910-1-tmp.grib + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:51:38 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2005, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:06:40 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1613469955.4953496-29107-29-a9a090fa-f1ef-4800-adc7-6751f5060b02.nc /cache/tmp/a9a090fa-f1ef-4800-adc7-6751f5060b02-adaptor.mars.internal-1613469955.4959936-29107-7-tmp.grib + + + CF-1.6 + 2021-02-16 11:45:21 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1986, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:02:50 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1613469727.7449334-6099-25-08f99fb3-4306-4665-b1cf-7856acd7d074.nc /cache/tmp/08f99fb3-4306-4665-b1cf-7856acd7d074-adaptor.mars.internal-1613469727.7455-6099-9-tmp.grib + + + CF-1.6 + 2021-02-16 11:44:18 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1998, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:09:17 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613470115.4492025-3662-30-e76a4636-bcc7-4bc8-84c5-fb6c5e8a0b5b.nc /cache/tmp/e76a4636-bcc7-4bc8-84c5-fb6c5e8a0b5b-adaptor.mars.internal-1613470115.4498112-3662-6-tmp.grib + + + + + + + + native6 + True + ERA5 + hus200_trends + 2009 + E5 + /executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc + mon + 133 + pl + Specific Humidity + Amon + ['atmos'] + hus + trend_hus200 + native6 + 0 + True + hus + specific_humidity + 1980 + 3 + 1980/2009 + 1M + reanaly + 00 + 1 + hus + v1 + {'operator': 'mean'} + {'units': 'year-1'} + {'levels': 20000, 'scheme': 'linear', 'coordinate': 'air_pressure'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/hus200_trends/hus/native6_ERA5_reanaly_v1_Amon_hus_1980-2009.nc')} + + + + + + + + CF-1.6 + 2021-02-16 11:46:09 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1990, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:11:56 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1613470273.542572-19140-31-0e1b367e-c733-4ed2-9606-a73bfca795af.nc /cache/tmp/0e1b367e-c733-4ed2-9606-a73bfca795af-adaptor.mars.internal-1613470273.543159-19140-6-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:41 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1987, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:04:40 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1613469838.4995203-21337-1-80de0a3c-e37a-43ad-92bf-cea62dbf9845.nc /cache/tmp/80de0a3c-e37a-43ad-92bf-cea62dbf9845-adaptor.mars.internal-1613469838.5015337-21337-1-tmp.grib + + + CF-1.6 + 2021-02-16 11:46:17 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1982, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:09:09 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613470105.512701-1530-24-cc0d6ec3-1034-4a7b-893b-9b0c519b99f4.nc /cache/tmp/cc0d6ec3-1034-4a7b-893b-9b0c519b99f4-adaptor.mars.internal-1613470105.5133204-1530-10-tmp.grib + + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:51:44 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2002, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:09:24 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data4/adaptor.mars.internal-1613470119.8506238-10344-9-47c6cd1d-4a29-4b5a-b3b6-b21917502fd5.nc /cache/tmp/47c6cd1d-4a29-4b5a-b3b6-b21917502fd5-adaptor.mars.internal-1613470119.8514302-10344-3-tmp.grib + + + CF-1.6 + 2021-02-16 11:45:49 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1993, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:00:18 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1613469573.4109259-4304-7-b30ea1fb-15ec-4807-a61b-905d8f907011.nc /cache/tmp/b30ea1fb-15ec-4807-a61b-905d8f907011-adaptor.mars.internal-1613469573.4114761-4304-3-tmp.grib + + + CF-1.6 + 2021-02-16 11:51:24 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2001, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:03:58 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613469795.7604463-2875-11-ab513f60-c050-45a7-8a4c-a5792d1a6f07.nc /cache/tmp/ab513f60-c050-45a7-8a4c-a5792d1a6f07-adaptor.mars.internal-1613469795.7610385-2875-5-tmp.grib + + + CF-1.6 + 2021-02-16 11:45:33 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1988, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:10:19 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1613470175.481168-23469-3-0d5351f0-6e89-44ed-93f8-731bf45677fc.nc /cache/tmp/0d5351f0-6e89-44ed-93f8-731bf45677fc-adaptor.mars.internal-1613470175.4817464-23469-2-tmp.grib + + + + + + + + CF-1.6 + 2021-02-16 11:45:42 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1989, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:00:15 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1613469573.177093-21860-27-8e91f2ff-a89f-4ee1-bfac-84b61134b93e.nc /cache/tmp/8e91f2ff-a89f-4ee1-bfac-84b61134b93e-adaptor.mars.internal-1613469573.1776888-21860-9-tmp.grib + + + CF-1.6 + 2021-02-16 11:46:02 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1984, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:10:10 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1613470168.9592538-10249-16-50b873d0-044d-4c7a-afd8-876a097999bb.nc /cache/tmp/50b873d0-044d-4c7a-afd8-876a097999bb-adaptor.mars.internal-1613470168.9597912-10249-5-tmp.grib + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:44:29 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1997, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:04:48 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613469844.8080084-8720-32-aa824d5d-5cdf-4c9a-9a0f-eb1eee27eaa9.nc /cache/tmp/aa824d5d-5cdf-4c9a-9a0f-eb1eee27eaa9-adaptor.mars.internal-1613469844.8087256-8720-7-tmp.grib + + + CMIP + CMIP6 + ACCESS-ESM1-5 + hus200_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc + mon + gn + CSIRO + Specific Humidity + Amon + ['atmos'] + hus + trend_hus200 + CMIP6 + 1 + hus + specific_humidity + 1980 + 1980/2009 + 1 + hus + v20191115 + {'operator': 'mean'} + {'units': 'year-1'} + {'levels': 20000, 'scheme': 'linear', 'coordinate': 'air_pressure'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/hus200_trends/hus/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_hus_gn_1980-2009.nc')} + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:45:15 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1995, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:11:02 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1613470221.7721999-10725-36-b1f369f5-667a-4c0e-802e-7bdc07de5eea.nc /cache/tmp/b1f369f5-667a-4c0e-802e-7bdc07de5eea-adaptor.mars.internal-1613470221.7731438-10725-8-tmp.grib + + + CF-1.6 + 2021-02-16 11:51:50 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2003, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:12:04 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1613470283.0155637-7061-21-4b14e237-48b7-4614-9924-bca4bd04ae02.nc /cache/tmp/4b14e237-48b7-4614-9924-bca4bd04ae02-adaptor.mars.internal-1613470283.0161061-7061-6-tmp.grib + + + + + + + + + + + + + CF-1.6 + 2021-02-16 11:46:09 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 1980, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:07:34 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613470011.744898-5277-26-3b49d8e7-f167-42e0-8946-84c6efae1a32.nc /cache/tmp/3b49d8e7-f167-42e0-8946-84c6efae1a32-adaptor.mars.internal-1613470011.7453704-5277-6-tmp.grib + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-21T06:04:10Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-21T06:04:10Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: hus (['fld_s30i205']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/3acd2b3a-e41b-4c1b-8b83-e9fc40e60d9d + hus + r1i1p1f1 + v20191115 + + + + + + + + + CF-1.6 + 2021-02-16 11:51:31 UTC by era5cli 1.0.0: reanalysis-era5-pressure-levels-monthly-means {'variable': 'specific_humidity', 'year': 2008, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf', 'pressure_level': [1, 2, 3, 5, 7, 10, 20, 30, 50, 70, 100, 125, 150, 175, 200, 225, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 775, 800, 825, 850, 875, 900, 925, 950, 975, 1000]} +2021-02-16 10:01:11 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data6/adaptor.mars.internal-1613469629.0500119-6766-3-57592f1f-4916-4b53-a1a1-2f7ca7032a10.nc /cache/tmp/57592f1f-4916-4b53-a1a1-2f7ca7032a10-adaptor.mars.internal-1613469629.050683-6766-1-tmp.grib + + diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot.nc b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot.nc new file mode 100644 index 000000000..b26f9474d Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot.nc differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..9957c18ce --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,5 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical + +Additional data citation information was found, for which no entry is available in the bibtex file: +- Huffman et al. 1997, http://dx.doi.org/10.1175/1520-0477(1997)078<0005:TGPCPG>2.0.CO;2; Adler et al. 2003, http://dx.doi.org/10.1175/1525-7541(2003)004<1147:TVGPCP>2.0.CO;2; Huffman et al. 2009, http://dx.doi.org/10.1029/2009GL040000; Adler et al. 2016, Global Precipitation Climatology Project (GPCP) Monthly Analysis: Climate Algorithm Theoretical Basis Document (C-ATBD) diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..7db802e8e --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,624 @@ + + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:11:19 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2003, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:07 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1589813458.216269-19620-17-13c7ff40-23c8-46fc-984b-569876c4bf5a.nc /cache/tmp/13c7ff40-23c8-46fc-984b-569876c4bf5a-adaptor.mars.internal-1589813458.2168717-19620-7-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:02 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1987, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:32 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1589813483.8317907-30806-25-bb7f3876-9dfc-4f75-8f22-5d1570544e7c.nc /cache/tmp/bb7f3876-9dfc-4f75-8f22-5d1570544e7c-adaptor.mars.internal-1589813483.8323789-30806-9-tmp.grib + + + CF-1.6 + 2020-05-18 17:10:58 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1989, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:32 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813484.3786476-16882-27-e4f6bc2c-4ca2-4e9e-b948-64ceb7cd9dd8.nc /cache/tmp/e4f6bc2c-4ca2-4e9e-b948-64ceb7cd9dd8-adaptor.mars.internal-1589813484.3793712-16882-3-tmp.grib + + + + + + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + Data + {'set_xlabel': 'region', 'set_ylabel': 'pr trend [mm kg m-3 day-1 yr-1]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'pr', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Precipitation + True + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + + + + + + CF-1.6 + 2020-05-18 17:11:38 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2006, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:09 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data9/adaptor.mars.internal-1589813461.3126838-28698-21-a4cbbbea-2c9b-4b0b-9d4a-0f6eca51e342.nc /cache/tmp/a4cbbbea-2c9b-4b0b-9d4a-0f6eca51e342-adaptor.mars.internal-1589813461.3133078-28698-6-tmp.grib + + + + + + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + + + + + + + + + + + obs4MIPs + GPCP-V2.3 + pr_trends + 2009 + /executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc + mon + Precipitation + Amon + [] + pr + trend_pr + obs4MIPs + 0 + True + pr + precipitation_flux + 1980 + 1 + 1980/2009 + kg m-2 s-1 + pr + v20180519 + {'operator': 'mean'} + {'units': 'mm kg m-3 day-1 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/obs4MIPs_GPCP-V2.3_pr_1980-2009.nc')} + + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:10:54 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1988, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:17 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1589813469.056247-754-26-913fe329-ba94-4ae0-ade5-3faec48ca11b.nc /cache/tmp/913fe329-ba94-4ae0-ade5-3faec48ca11b-adaptor.mars.internal-1589813469.0568333-754-7-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:08 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1995, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:46 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1589813437.9998176-18961-23-7e078777-d9f0-443f-9563-031fcc74735a.nc /cache/tmp/7e078777-d9f0-443f-9563-031fcc74735a-adaptor.mars.internal-1589813438.000431-18961-4-tmp.grib + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:32:57Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:32:57Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: pr (['fld_s05i216']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/e1bc1d0d-54d8-4a7f-adae-d3f6324a2366 + pr + r1i1p1f1 + v20191115 + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:11:27 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2002, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:08 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1589813460.3256578-1099-32-ed3bba2e-6aad-4895-bd7d-0295040b060a.nc /cache/tmp/ed3bba2e-6aad-4895-bd7d-0295040b060a-adaptor.mars.internal-1589813460.32628-1099-8-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:12:11 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2008, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:59 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1589813452.0306456-13371-18-51f17967-660b-460f-8748-305bc63d449a.nc /cache/tmp/51f17967-660b-460f-8748-305bc63d449a-adaptor.mars.internal-1589813452.0317402-13371-5-tmp.grib + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + + + + + + + + + + + native6 + True + ERA5 + pr_trends + 2009 + E5 + /executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc + mon + Precipitation + Amon + ['atmos'] + pr + trend_pr + native6 + 1 + True + pr + precipitation_flux + 1980 + 3 + 1980/2009 + 1M + reanaly + 00 + kg m-2 s-1 + pr + v1 + {'operator': 'mean'} + {'units': 'mm kg m-3 day-1 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/native6_ERA5_reanaly_v1_Amon_pr_1980-2009.nc')} + + + + + + + CF-1.6 + 2020-05-18 17:11:07 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1992, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:23 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1589813478.4421573-19426-27-93c07648-9c24-4774-afac-ab8494cc1c45.nc /cache/tmp/93c07648-9c24-4774-afac-ab8494cc1c45-adaptor.mars.internal-1589813478.442782-19426-6-tmp.grib + + + + + + + + + + + + + + + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + + + + + + CF-1.6 + 2020-05-18 17:11:13 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1997, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:40 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1589813493.9403872-785-27-b6a8debc-2065-45bd-8eb9-d8ab28e279c6.nc /cache/tmp/b6a8debc-2065-45bd-8eb9-d8ab28e279c6-adaptor.mars.internal-1589813493.941028-785-6-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:22 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1983, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:11:12 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589821865.4731586-26038-11-d3756dac-9690-4cf6-aaec-fccd1ec45fa6.nc /cache/tmp/d3756dac-9690-4cf6-aaec-fccd1ec45fa6-adaptor.mars.internal-1589821865.473673-26038-2-tmp.grib + + + + + + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:11:26 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1981, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:11:12 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1589821865.5097106-16837-1-813ddd24-a67a-457b-91ec-fbd77711743c.nc /cache/tmp/813ddd24-a67a-457b-91ec-fbd77711743c-adaptor.mars.internal-1589821865.5130239-16837-1-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:19 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1998, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:57 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589813450.5289319-14034-30-468ce8cb-5372-422c-8ccf-5853fb06dc8e.nc /cache/tmp/468ce8cb-5372-422c-8ccf-5853fb06dc8e-adaptor.mars.internal-1589813450.5295234-14034-7-tmp.grib + + + + + + + + CF-1.4 + 2.9.1 + NOAA Climate Data Record Program for satellites, FY 2011. Global Precipitation Climatology Project (GPCP) Monthly Version 2.3 gridded, merged satellite/gauge precipitation Climate Data Record (CDR) with errors from 1979 to present. + George Huffman (george.j.huffman@nasa.gov) + 2018-02-08T15:25:54Z + mon + 2018-02-08T15:25:54Z CMOR rewrote data to comply with CF standards and CMIP5 requirements. + NASA-GSFC + NASA Goddard Space Flight Center, Greenbelt MD, USA + CMIP5 + Obs-GPCP + atmos + observations + obs4MIPs + atmos + Huffman et al. 1997, http://dx.doi.org/10.1175/1520-0477(1997)078<0005:TGPCPG>2.0.CO;2; Adler et al. 2003, http://dx.doi.org/10.1175/1525-7541(2003)004<1147:TVGPCP>2.0.CO;2; Huffman et al. 2009, http://dx.doi.org/10.1029/2009GL040000; Adler et al. 2016, Global Precipitation Climatology Project (GPCP) Monthly Analysis: Climate Algorithm Theoretical Basis Document (C-ATBD) + Obs-GPCP (Global Precipitation Climatology Project) v23rB1 + GPCP + satellite_retrieval_and_gauge_analysis + Table Amon_ana (10 March 2011) 34230b4cbd7bedf38c827d6e41c1b8ea + Global Precipitation Climatology Project (GPCP) Climate Data Record (CDR), Monthly V2.3 observation output prepared for obs4MIPs. + 4070c751-6c2d-440f-a4d7-5b325fb98990 + + + + + + + + CF-1.6 + 2020-05-18 17:11:20 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2001, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:01 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813452.3176594-16780-23-29878f6f-a86a-4ab6-8775-f70663683d99.nc /cache/tmp/29878f6f-a86a-4ab6-8775-f70663683d99-adaptor.mars.internal-1589813452.3182452-16780-3-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:01 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1990, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:00 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813446.9893258-16592-23-03f38918-9e1c-4070-b594-17946c2eed53.nc /cache/tmp/03f38918-9e1c-4070-b594-17946c2eed53-adaptor.mars.internal-1589813446.9902925-16592-6-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:04 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1991, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:19 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589813470.1575496-2209-27-3fe692d9-0cfe-4807-9aea-01bd5fd4ad2f.nc /cache/tmp/3fe692d9-0cfe-4807-9aea-01bd5fd4ad2f-adaptor.mars.internal-1589813470.1581733-2209-6-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:05 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1994, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:32 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data4/adaptor.mars.internal-1589813484.1459713-16592-25-c52fbab8-c433-4ec6-b0ee-f017e1862a63.nc /cache/tmp/c52fbab8-c433-4ec6-b0ee-f017e1862a63-adaptor.mars.internal-1589813484.146485-16592-7-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:11:26 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1999, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:16 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1589813468.2532623-4797-12-9d7f5306-8a30-403f-9434-e82a472e9b19.nc /cache/tmp/9d7f5306-8a30-403f-9434-e82a472e9b19-adaptor.mars.internal-1589813468.2538893-4797-1-tmp.grib + + + CMIP + CMIP6 + ACCESS-ESM1-5 + pr_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc + mon + gn + CSIRO + Precipitation + Amon + ['atmos'] + pr + trend_pr + CMIP6 + 2 + pr + precipitation_flux + 1980 + 1980/2009 + kg m-2 s-1 + pr + v20191115 + {'operator': 'mean'} + {'units': 'mm kg m-3 day-1 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/pr_trends/pr/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_pr_gn_1980-2009.nc')} + + + + + + + + CF-1.6 + 2020-05-18 17:11:23 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2004, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:49 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813438.0962238-3484-25-85f9f118-0af2-4ffa-a37d-e82b1a5d7f37.nc /cache/tmp/85f9f118-0af2-4ffa-a37d-e82b1a5d7f37-adaptor.mars.internal-1589813438.0967617-3484-8-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:00 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1986, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:51 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data7/adaptor.mars.internal-1589813438.0419762-3368-23-833fb808-429e-4dc7-a564-59128c4d52a9.nc /cache/tmp/833fb808-429e-4dc7-a564-59128c4d52a9-adaptor.mars.internal-1589813438.0425093-3368-4-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:33 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2005, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:33 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589813484.5397515-16531-27-ce001458-821b-4963-ac93-426c375e67a7.nc /cache/tmp/ce001458-821b-4963-ac93-426c375e67a7-adaptor.mars.internal-1589813484.5403068-16531-5-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:59 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2007, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:09 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data4/adaptor.mars.internal-1589813462.1731389-29118-23-0f5c3eb1-b2b5-4833-b023-241c5aa7371e.nc /cache/tmp/0f5c3eb1-b2b5-4833-b023-241c5aa7371e-adaptor.mars.internal-1589813462.17375-29118-4-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:13 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1996, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:50:51 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1589813438.3661757-1452-25-39338a7c-c6a6-425f-8841-ca74a5974f79.nc /cache/tmp/39338a7c-c6a6-425f-8841-ca74a5974f79-adaptor.mars.internal-1589813438.3667338-1452-8-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:10:54 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1982, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:10:48 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data8/adaptor.mars.internal-1589821839.6173804-1554-30-8e8cfbfa-0173-4c02-a703-2289208d617a.nc /cache/tmp/8e8cfbfa-0173-4c02-a703-2289208d617a-adaptor.mars.internal-1589821839.6179628-1554-7-tmp.grib + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:11:37 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2009, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:23 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589813477.2671602-16021-24-26772b19-2e71-4366-90d1-4d45a131417d.nc /cache/tmp/26772b19-2e71-4366-90d1-4d45a131417d-adaptor.mars.internal-1589813477.2677782-16021-6-tmp.grib + + + + + + + + + + + + + CF-1.6 + 2020-05-18 17:10:57 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1985, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:10:47 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data0/adaptor.mars.internal-1589821839.5152671-23448-17-8641043a-88aa-4c2f-801a-d3f558aa3850.nc /cache/tmp/8641043a-88aa-4c2f-801a-d3f558aa3850-adaptor.mars.internal-1589821839.5158448-23448-3-tmp.grib + + + + + + + + CF-1.6 + 2020-05-18 17:12:03 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1984, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:11:36 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data5/adaptor.mars.internal-1589821889.2301419-9238-26-8f20e52d-f8e4-4c4b-b312-050cf3897fe6.nc /cache/tmp/8f20e52d-f8e4-4c4b-b312-050cf3897fe6-adaptor.mars.internal-1589821889.230721-9238-7-tmp.grib + + + CF-1.6 + 2020-05-18 17:11:10 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1993, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:16 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data2/adaptor.mars.internal-1589813467.65487-21149-27-e75f987e-ef6c-4e1a-9b03-e9ec92f96c22.nc /cache/tmp/e75f987e-ef6c-4e1a-9b03-e9ec92f96c22-adaptor.mars.internal-1589813467.6554835-21149-5-tmp.grib + + + CF-1.6 + 2020-05-18 17:10:59 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 1980, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 17:10:48 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data3/adaptor.mars.internal-1589821839.6346538-4497-31-e455f98e-1de7-43f5-a761-e66e676c0c29.nc /cache/tmp/e455f98e-1de7-43f5-a761-e66e676c0c29-adaptor.mars.internal-1589821839.6352246-4497-6-tmp.grib + + + + CF-1.6 + 2020-05-18 17:11:15 UTC by era5cli 1.0.0: reanalysis-era5-single-levels-monthly-means {'variable': 'total_precipitation', 'year': 2000, 'product_type': 'monthly_averaged_reanalysis', 'month': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'time': ['00:00'], 'format': 'netcdf'} +2020-05-18 14:51:23 GMT by grib_to_netcdf-2.16.0: /opt/ecmwf/eccodes/bin/grib_to_netcdf -S param -o /cache/data1/adaptor.mars.internal-1589813477.394166-23721-9-9795d7d4-bc5e-46cf-b52e-e3c3cfad20a7.nc /cache/tmp/9795d7d4-bc5e-46cf-b52e-e3c3cfad20a7-adaptor.mars.internal-1589813477.3947363-23721-2-tmp.grib + + + + diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot.nc b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot.nc new file mode 100644 index 000000000..a3adfe8fc Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot.nc differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..ac7bbc084 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,3 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..ffe81fd4b --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,1725 @@ + + + + + + + + + + + + + + + + + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + Mon Nov 11 09:34:23 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:22Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:22Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:34:24 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2004010100_2004120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2004010100_2004120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/72a39390-1e83-463d-a51a-40fd5ac76066 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + + + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + + + + + + Mon Nov 11 08:21:38 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:41Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:41Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:21:39 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1985010100_1985120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1985010100_1985120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/f997f820-3e95-4dbc-a658-901507f86cda + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + Data + {'set_xlabel': 'region', 'set_ylabel': 'psl trend [m-1 kg s-2 yr-1]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'psl', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Sea Level Pressure + True + + + obs4MIPs + ERA-5 + psl_trends + 2009 + /executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc + mon + Sea Level Pressure + Amon + [] + psl + trend_psl + obs4MIPs + 0 + true' + psl + air_pressure_at_mean_sea_level + 1980 + 1 + 1980/2009 + Pa + psl + v20250220 + {'operator': 'mean'} + {'units': 'm-1 kg s-2 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/psl_trends/psl/obs4MIPs_ERA-5_psl_1980-2009.nc')} + + + Mon Nov 11 09:22:34 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:15Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:15Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:22:35 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2001010100_2001120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2001010100_2001120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/54bbb01a-cb39-4cbe-84b3-cda279e4d192 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:53:34 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:33Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:33Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:53:35 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2009010100_2009120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2009010100_2009120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4f3a86f9-a5da-46b7-b266-2bc43e58acea + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:14:09 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:37Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:37Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:14:10 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1983010100_1983120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1983010100_1983120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/dced162b-acde-4355-b7de-2f91893bc262 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:26:35 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:18Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:18Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:26:36 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2002010100_2002120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2002010100_2002120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/7ec87699-feeb-44c9-b275-26488e950d1c + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + + + + + + Mon Nov 11 08:36:33 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:49Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:49Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:36:33 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1989010100_1989120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1989010100_1989120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/17ca405e-1d86-4c5e-b3ee-51184398b99e + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + Mon Nov 11 08:40:21 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:51Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:51Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:40:22 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1990010100_1990120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1990010100_1990120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/8d1cd9a0-3fe4-4bcf-898d-4a04f429239f + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 08:55:28 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:00Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:00Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:55:29 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1994010100_1994120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1994010100_1994120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/afdb6ded-22e4-4c48-8406-3b09b3f125ce + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + + + + + + + + + + + + + + + + + + + + + Mon Nov 11 09:14:46 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:11Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:11Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:14:47 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1999010100_1999120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1999010100_1999120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/c7e331bc-9644-435c-916f-f53117e72b2d + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:18:41 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:13Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:13Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:18:41 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2000010100_2000120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2000010100_2000120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/0f1774d8-899f-4a48-9fe8-f8161928cc2d + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:47:48 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:55Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:55Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:47:49 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1992010100_1992120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1992010100_1992120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/3a0e1a1e-1d6e-4270-9460-78e834cb9fa9 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:10:27 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:34Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:34Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:10:27 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1982010100_1982120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1982010100_1982120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4f920f30-c6e0-4b3e-a598-9044d1b0353a + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:02:59 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:30Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:30Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:03:00 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1980010100_1980120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1980010100_1980120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/158e91bc-2547-4872-b182-28eac623877d + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 09:38:11 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:24Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:24Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:38:12 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2005010100_2005120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2005010100_2005120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b5fdbc84-4027-474f-9d5c-4530ee7a7e13 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:44:04 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:53Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:53Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:44:05 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1991010100_1991120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1991010100_1991120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/f649ff6a-015b-4903-84b7-763a47522361 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:45:45 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:28Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:28Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:45:46 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2007010100_2007120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2007010100_2007120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/49ac6334-7b04-44ad-904f-c2e046cc3250 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:32:50 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:47Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:47Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:32:51 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1988010100_1988120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1988010100_1988120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4a48baad-460e-46ed-8e2f-a2058357fbe7 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:51:41 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:58Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:58Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:51:42 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1993010100_1993120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1993010100_1993120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e443b7fb-499c-44f8-b303-5e6130ebb777 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + Mon Nov 11 09:49:40 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:31Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:31Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:49:41 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2008010100_2008120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2008010100_2008120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/5cb99581-4a2b-4b7b-a5f5-18ed12eaac0b + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 08:06:39 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:32Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:32Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:06:40 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1981010100_1981120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1981010100_1981120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b7b9d419-762f-4788-9e87-d4dd94ddb9fa + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:25:17 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:43Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:43Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:25:18 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1986010100_1986120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1986010100_1986120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b229480a-509c-432f-9b76-eedc644ef146 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:59:15 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:02Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:02Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:59:16 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1995010100_1995120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1995010100_1995120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e7e486a2-96b3-4c5c-af50-c29f55c5578e + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:11:01 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:08Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:08Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:11:01 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1998010100_1998120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1998010100_1998120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e982d5e2-0440-4d7d-b4b2-d0455a6cdb3c + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CMIP + CMIP6 + ACCESS-ESM1-5 + psl_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc + mon + gn + CSIRO + Sea Level Pressure + Amon + ['atmos'] + psl + trend_psl + CMIP6 + 1 + psl + air_pressure_at_mean_sea_level + 1980 + 1980/2009 + Pa + psl + v20191115 + {'operator': 'mean'} + {'units': 'm-1 kg s-2 yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/psl_trends/psl/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_psl_gn_1980-2009.nc')} + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T04:03:09Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T04:03:09Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: psl (['fld_s16i222']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/d0f948a8-3d38-4b57-9001-9e0cd1081cba + psl + r1i1p1f1 + v20191115 + + + Mon Nov 11 08:29:07 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:45Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:45Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:29:07 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1987010100_1987120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1987010100_1987120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/572dcc0c-abdf-41e7-9ade-2939db1efb7d + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 09:07:14 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:06Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:06Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:07:15 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1997010100_1997120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1997010100_1997120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/2c7f18b9-ec6f-404a-ab90-c42a45f52535 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 09:30:26 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:20Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:20Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:30:27 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2003010100_2003120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2003010100_2003120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/af36bbbd-e130-483b-8c41-a537a887b4de + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:41:57 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:26Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:26Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:41:57 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.2006010100_2006120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.2006010100_2006120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b161962c-7c7d-441a-b113-9462797a996a + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:17:53 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:32:39Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:32:39Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:17:54 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1984010100_1984120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1984010100_1984120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d09828c9-bfaa-4771-aa88-920f0f2afda6 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + Mon Nov 11 09:03:21 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:33:04Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:33:04Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:03:21 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_151_msl.ll025sc.1996010100_1996120100.unc.nc e5.moda.an.sfc.128_151_msl.ll025sc.1996010100_1996120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/04abe241-81c5-42ef-ace7-8c8d68399fb8 + psl + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot.nc b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot.nc new file mode 100644 index 000000000..c34121783 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot.nc differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..c0ee1c50b --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,6 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. + +Additional data citation information was found, for which no entry is available in the bibtex file: +- doi:https://doi.org/10.1029/2019JD032361 diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..ab644fb25 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,1780 @@ + + + + + + + + + Mon Nov 11 09:15:14 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:32Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:32Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:15:15 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1999010100_1999120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1999010100_1999120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4ba68b72-f322-4c68-8ad4-7a42d4a887e3 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + Mon Nov 11 09:19:10 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:34Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:34Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:19:11 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2000010100_2000120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2000010100_2000120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/c647754a-d25b-47ae-b19c-0b95a8ae0f4c + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:42:25 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:48Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:48Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:42:26 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2006010100_2006120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2006010100_2006120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d34697e2-8eeb-4746-9271-7b4f2821f3d1 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:14:36 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:56Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:56Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:14:37 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1983010100_1983120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1983010100_1983120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d510817d-08f6-4c23-9a0e-2eb54cb3461b + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + + + + + Mon Nov 11 08:52:10 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:18Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:18Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:52:10 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1993010100_1993120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1993010100_1993120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/18577a92-66f9-4161-af93-fdc14679fd32 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:29:34 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:05Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:05Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:29:35 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1987010100_1987120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1987010100_1987120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/53120b0a-2990-4fe0-a319-9a385ee19632 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:07:44 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:28Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:28Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:07:45 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1997010100_1997120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1997010100_1997120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b7de1b65-9dcd-4576-bf2b-df3aab3f47bf + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + + + + + + + + + + + + + + + + + + + + + Mon Nov 11 08:03:30 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:49Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:49Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:03:30 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1980010100_1980120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1980010100_1980120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d56e5162-2817-4836-9832-dfe9baeaccb6 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 08:33:20 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:07Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:07Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:33:21 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1988010100_1988120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1988010100_1988120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/801bce5d-a49c-4ef8-8bab-42f71ef8a4a1 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:10:58 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:53Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:53Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:10:59 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1982010100_1982120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1982010100_1982120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/bb058d6b-50b3-4651-a9a5-79269578d6cb + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:37:00 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:09Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:09Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:37:01 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1989010100_1989120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1989010100_1989120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/67f04e82-62cd-4788-8ae6-1c0212310a3a + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 08:18:20 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:58Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:58Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:18:21 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1984010100_1984120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1984010100_1984120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/8a564d85-a0d9-4331-b382-39cb37941f32 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:30:55 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:42Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:42Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:30:55 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2003010100_2003120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2003010100_2003120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/04615eb9-4b0b-4f87-ba2e-4aed5b5eb368 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + + + + + + CF-1.7 + 2 versions, statistical infilling and no-infilling + Created on 2022-03-30 10:07:20 + levante6.atos.local + Amon + ground + OBS + doi:https://doi.org/10.1029/2019JD032361 + https://crudata.uea.ac.uk/cru/data/temperature/ + 2 + HadCRUT5 data reformatted for ESMValTool v2.5.0 + b309192 + 5.0.1.0-analysis + + + + + + + + + + + + Mon Nov 11 09:38:40 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:46Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:46Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:38:41 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2005010100_2005120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2005010100_2005120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/fd660fd4-546f-458d-9562-7fd4ff87bbbf + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + + + + + + Mon Nov 11 09:50:08 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:53Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:53Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:50:09 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2008010100_2008120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2008010100_2008120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/05cbf5eb-9499-4378-bc5d-3f8480aa8e46 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 09:23:03 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:37Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:37Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:23:04 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2001010100_2001120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2001010100_2001120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/3d029771-4977-4d59-a3bb-8201427b1fea + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + Mon Nov 11 09:54:03 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:55Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:55Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:54:04 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2009010100_2009120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2009010100_2009120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/0f95b9b5-4572-4a11-be95-98ddf40abaad + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + OBS + HadCRUT5 + tas_trends + 2009 + /executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc + mon + Near-Surface Air Temperature + Amon + ['atmos'] + tas + trend_tas + OBS + 0 + tas + air_temperature + 1980 + 2 + 1980/2009 + ground + K + tas + 5.0.1.0-analysis + {'operator': 'mean'} + {'units': 'K yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/OBS_HadCRUT5_ground_5.0.1.0-analysis_Amon_tas_1980-2009.nc')} + + + Mon Nov 11 08:40:50 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:11Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:11Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:40:50 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1990010100_1990120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1990010100_1990120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e414f376-cbcc-417e-8915-ab31ffc36b8e + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 09:46:14 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:51Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:51Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:46:15 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2007010100_2007120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2007010100_2007120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/a55599f3-d0af-4b17-afa2-b3212b60035f + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:55:58 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:21Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:21Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:55:59 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1994010100_1994120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1994010100_1994120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/0ab8f721-dc43-4af9-b689-4938ee79212e + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 08:44:34 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:14Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:14Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:44:35 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1991010100_1991120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1991010100_1991120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/50033987-988c-4f51-975e-acc4d708019e + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T03:52:25Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T03:52:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: tas (['fld_s03i236']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/d2debfa6-c0e2-4339-bac8-08d97867ae3a + tas + r1i1p1f1 + v20191115 + + + Mon Nov 11 09:27:05 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:39Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:39Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:27:06 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2002010100_2002120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2002010100_2002120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/874ca4ae-cfb5-459a-8b24-cbd4a5849c83 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 08:48:19 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:16Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:16Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:48:20 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1992010100_1992120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1992010100_1992120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/bb482f0c-8c12-4888-a35a-028c307503d2 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + CMIP + CMIP6 + ACCESS-ESM1-5 + tas_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + trend_tas + CMIP6 + 2 + tas + air_temperature + 1980 + 1980/2009 + K + tas + v20191115 + {'operator': 'mean'} + {'units': 'K yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1980-2009.nc')} + + + Mon Nov 11 08:25:49 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:02Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:02Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:25:50 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1986010100_1986120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1986010100_1986120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/03a8eb6e-3782-48bd-a326-939e2ae3f353 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + Mon Nov 11 08:07:07 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:30:51Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:30:51Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:07:08 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1981010100_1981120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1981010100_1981120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/df79817e-3ec4-446a-bbdd-b9423c74d38c + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + Mon Nov 11 08:59:45 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:23Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:23Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:59:46 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1995010100_1995120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1995010100_1995120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/cecd5ed7-8e72-4f08-930a-35e8f49e9408 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + Data + {'set_xlabel': 'region', 'set_ylabel': 'tas trend [K/yr]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'tas', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Near-Surface Air Temperature + True + + + + + + + + + + + + + + + + + + Mon Nov 11 08:22:05 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:00Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:00Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 08:22:06 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1985010100_1985120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1985010100_1985120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/6744ef3c-aa21-41ef-911a-f0c208686178 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + obs4MIPs + ERA-5 + tas_trends + 2009 + /executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc + mon + Near-Surface Air Temperature + Amon + [] + tas + trend_tas + obs4MIPs + 1 + true' + tas + air_temperature + 1980 + 1 + 1980/2009 + K + tas + v20250220 + {'operator': 'mean'} + {'units': 'K yr-1'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/tas_trends/tas/obs4MIPs_ERA-5_tas_1980-2009.nc')} + + + Mon Nov 11 09:34:52 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:44Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:44Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:34:53 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.2004010100_2004120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.2004010100_2004120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/5714205b-b115-4087-a270-c6008c4b2f4b + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + Mon Nov 11 09:11:28 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:30Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:30Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:11:29 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1998010100_1998120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1998010100_1998120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/641f0009-16c6-469d-a608-0c2461628d58 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + Mon Nov 11 09:03:48 MST 2019 + Linux casper02 3.10.0-693.21.1.el7.x86_64 #1 SMP Wed Mar 7 19:03:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + CF-1.11; ODS-2.5 + ECMWF: https://cds.climate.copernicus.eu, Copernicus Climate Data Store + netCDF Operators version 4.7.9 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco) + NCO: Precision-preserving compression to netCDF4/HDF5 (see "history" and "NCO" global attributes below for specifics). + CISL RDA: Conversion from ECMWF GRIB 1 data to netCDF4. + 4.6.1 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T19:31:25Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T19:31:25Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards; +Mon Nov 11 09:03:49 2019: ncks -4 --ppc default=7 e5.moda.an.sfc.128_167_2t.ll025sc.1996010100_1996120100.unc.nc e5.moda.an.sfc.128_167_2t.ll025sc.1996010100_1996120100.nc + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/3e8b9d93-8c36-4e61-8c4c-7f2ae46a4bb3 + tas + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot.nc b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot.nc new file mode 100644 index 000000000..16c45561c Binary files /dev/null and b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot.nc differ diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot_citation.bibtex b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot_citation.bibtex new file mode 100644 index 000000000..3aa17cfb6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot_citation.bibtex @@ -0,0 +1,22 @@ +@article{righi20gmd, + doi = {10.5194/gmd-13-1179-2020}, + url = {https://doi.org/10.5194/gmd-13-1179-2020}, + year = {2020}, + month = mar, + publisher = {Copernicus {GmbH}}, + volume = {13}, + number = {3}, + pages = {1179--1199}, + author = {Mattia Righi and Bouwe Andela and Veronika Eyring and Axel Lauer and Valeriu Predoi and Manuel Schlund and Javier Vegas-Regidor and Lisa Bock and Bj"{o}rn Br"{o}tz and Lee de Mora and Faruk Diblen and Laura Dreyer and Niels Drost and Paul Earnshaw and Birgit Hassler and Nikolay Koldunov and Bill Little and Saskia Loosveldt Tomas and Klaus Zimmermann}, + title = {Earth System Model Evaluation Tool (ESMValTool) v2.0 -- technical overview}, + journal = {Geoscientific Model Development} +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.4272, + url = {https://doi.org/10.22033/ESGF/CMIP6.4272}, + title = {CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ziehn, Tilo and Chamberlain, Matthew and Lenton, Andrew and Law, Rachel and Bodman, Roger and Dix, Martin and Wang, Yingping and Dobrohotoff, Peter and Srbinovsky, Jhan and Stevens, Lauren and Vohralik, Peter and Mackallah, Chloe and Sullivan, Arnold and O'Farrell, Siobhan and Druken, Kelsey}, + doi = {10.22033/ESGF/CMIP6.4272}, +} diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot_data_citation_info.txt b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot_data_citation_info.txt new file mode 100644 index 000000000..ac7bbc084 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot_data_citation_info.txt @@ -0,0 +1,3 @@ +Follow the links below to find more information about CMIP6 data: +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.CSIRO.ACCESS-ESM1-5.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.obs4MIPs.ECMWF.ERA-5. diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot_provenance.xml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot_provenance.xml new file mode 100644 index 000000000..ef885f452 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot_provenance.xml @@ -0,0 +1,1486 @@ + + + + + + + + + + + + + + + + + + + manuel.schlund@dlr.de + schlunma + DLR, Germany + https://orcid.org/0000-0001-5251-0158 + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:33:28Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:33:28Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/50badc4f-85bd-46f4-a3a9-f22f3874da18 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:32:04Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:32:04Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b740f0b4-b106-4baa-a420-32b25f1b3151 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:18:05Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:18:05Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/7a195c9a-e1aa-4a9e-acf1-eef6f93918c6 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + katjaweigel + University of Bremen and DLR, Germany + https://orcid.org/0000-0001-6133-7801 + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:27:52Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:27:52Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/96fc3a85-3117-41eb-881b-075b54a9a5d6 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:48:58Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:48:58Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/83679911-cdd6-4ac0-9f57-6151925675d1 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:47:34Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:47:34Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/d25e1a87-8fbb-4f92-a20f-124326ee1711 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:40:30Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:40:30Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/5295ec9a-1fc7-4e8e-9684-4c126319abb0 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:37:40Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:37:40Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/bf8618bd-e1ef-48a0-9f9b-4727673dc970 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:30:40Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:30:40Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/58d981ea-be18-44a2-b3bc-eedd33e1a184 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:26:28Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:26:28Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/9fbfd57c-633c-4990-bc87-eb2b43e9a06a + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:41:56Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:41:56Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/26426ad1-3864-42d0-9484-aff7b020af4c + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T17:53:07Z + 01.00.30 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-15T17:53:07Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: areacella (['fld_s02i204']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + fx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/f0abeaa6-9383-4702-88d5-2631baac4f4d + areacella + r1i1p1f1 + v20191115 + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:15:15Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:15:15Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/34fab0ed-a327-481b-be5b-efa2fcf32d1b + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:43:22Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:43:22Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/e76bf785-88c0-4212-9d5f-cb5e8719abee + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:29:16Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:29:16Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b7f9a1c9-b795-4c3b-a335-42a850b3672d + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:12:26Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:12:26Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/c6da4931-e135-4bf1-ad7a-324077a76236 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:34:52Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:34:52Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/a76bdcba-e29b-49af-aab7-62eed1fb69f3 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:23:40Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:23:40Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/da28a1c8-d9c6-4ca9-b95b-3f2480daeaed + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + Box plot, linear trends for the 46 IPCC AR6 reference regions for land (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + [] + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:25:04Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:25:04Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/cde99d82-22a9-45fa-bf5a-499731a3f39f + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:53:10Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:53:10Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/315b8a75-d1f5-4c62-a9b2-692ad4b23031 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:16:39Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:16:39Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b8c90cee-e369-49f1-89e6-018466a00885 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:36:16Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:36:16Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/b85414ba-a7d1-4fda-aa83-c086ebb94c04 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:44:46Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:44:46Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/a97e783b-1ddb-46fb-88b6-bbb41f5636db + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:13:51Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:13:51Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/4ea20509-74fc-4c57-b7af-95270fb5977b + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + obs4MIPs + ERA-5 + ua200_trends + 2009 + /executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc + mon + Eastward Wind + Amon + [] + ua + trend_ua200 + obs4MIPs + 0 + true' + ua + eastward_wind + 1980 + 1 + 1980/2009 + m s-1 + ua + v20250220 + {'operator': 'mean'} + {'units': 'm s-1 yr-1'} + {'levels': 20000, 'scheme': 'linear', 'coordinate': 'air_pressure'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/ua200_trends/ua/obs4MIPs_ERA-5_ua_1980-2009.nc')} + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:19:29Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:19:29Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/a9127ef5-adc7-4ad2-8c3f-b9277f5eaa8d + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CMIP + CMIP6 + ACCESS-ESM1-5 + ua200_trends + 2009 + r1i1p1f1 + historical + /executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc + mon + gn + CSIRO + Eastward Wind + Amon + ['atmos'] + ua + trend_ua200 + CMIP6 + 1 + ua + eastward_wind + 1980 + 1980/2009 + m s-1 + ua + v20191115 + {'operator': 'mean'} + {'units': 'm s-1 yr-1'} + {'levels': 20000, 'scheme': 'linear', 'coordinate': 'air_pressure'} + {'shapefile': PosixPath('/work/bk1088/b381141/climate_ref/software/conda/esmvaltool-197808f258098b81baadbfd8a852cc999f7b812b/lib/python3.12/site-packages/esmvalcore/preprocessor/shapefiles/ar6.shp'), 'decomposed': True, 'ids': {'Acronym': ['NWN', 'NEN', 'GIC', 'WNA', 'CNA', 'ENA', 'NCA', 'SCA', 'CAR', 'NWS', 'NSA', 'NES', 'SAM', 'SWS', 'SES', 'SSA', 'NEU', 'WCE', 'EEU', 'MED', 'SAH', 'WAF', 'CAF', 'NEAF', 'SEAF', 'WSAF', 'ESAF', 'MDG', 'RAR', 'WSB', 'ESB', 'RFE', 'WCA', 'ECA', 'TIB', 'EAS', 'ARP', 'SAS', 'SEA', 'NAU', 'CAU', 'EAU', 'SAU', 'NZ', 'WAN', 'EAN']}} + {} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250908_083356/preproc/ua200_trends/ua/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_ua_gn_1980-2009.nc')} + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:20:53Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:20:53Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/129a634a-de75-44c1-b939-53468232c0bd + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:46:10Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:46:10Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/81da8762-59d0-4a52-9f62-d161af99130f + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:51:46Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:51:46Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/80e00d69-3548-4589-8ef7-ea81cf2177d9 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:39:04Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:39:04Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/5fda452a-2b38-43bf-970f-9182a1742ed2 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:22:17Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:22:17Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/32524557-5393-4021-ba0a-526fa55ada45 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + True + Seaborn barplot for one or more dataset(s) + ['dataset'] + {'set_xlabel': 'region', 'set_ylabel': 'ua trend [m s-1 yr-1]'} + True + tcp://127.0.0.1:41237 + plot + seaborn_diag.py + barplot + {'x': 'shape_id', 'y': 'ua', 'hue': 'dataset'} + {'style': 'ticks', 'rc': {'figure.figsize': [28, 6]}} + Trend in Zonal Wind at 200 hPa + True + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-21T06:04:10Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2019-11-21T06:04:10Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards. + 1 + Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia + CSIRO + CMIP6 model data produced by CSIRO is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (https://creativecommons.org/licenses/). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law. + CMIP6 + 250 km + Exp: ESM-historical; Local ID: HI-05; Variable: ua (['fld_s30i201']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + atmos + forcing: GHG, Oz, SA, Sl, Vl, BC, OC, (GHG = CO2, N2O, CH4, CFC11, CFC12, CFC113, HCFC22, HFC125, HFC134a) + ACCESS-ESM1.5 (2019): +aerosol: CLASSIC (v1.0) +atmos: HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m) +atmosChem: none +land: CABLE2.4 +landIce: none +ocean: ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m) +ocnBgchem: WOMBAT (same grid as ocean) +seaIce: CICE4.1 (same grid as ocean) + ACCESS-ESM1-5 + AOGCM + none + none + Amon + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/b4354f60-cd6e-4d1e-9700-90001a182d7d + ua + r1i1p1f1 + v20191115 + + + CF-1.11; ODS-2.5 + obs4MIPs + 3.9.0 + submissions-obs4mips@wcrp-cmip.org + 2025-02-20T18:50:22Z + ODS-2.5 + PjG + areacella + mon + . + 0.25x 0.25 degree latitude x longitude + gn + 2025-02-20T18:50:22Z; CMOR rewrote data to be consistent with obs4MIPs, and CF-1.11; ODS-2.5 standards + The European Centre for Medium-Range Weather Forecasts, Shinfield Park, Reading RG2 9AX, UK + ECMWF + License to use Copernicus products available https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview + CMIP6 + 25 km + reanalysis + atmos + https://doi.org/10.1002/qj.3803 + global + ECMWF-ERA-5 1.0 (2019): ECMWF - ERA5 (European ReAnalysis) + 20240404 + ERA-5 + reanalysis + 1.0 + obs4MIPs_Amon + Creation Date:(18 November 2020) MD5:e1c3cfad2bd885020628302b713a1747 + ERA5 monthly mean data + hdl:21.14102/6add58cd-4f4e-4ba6-a7fa-99f3edf737d1 + ua + obs4MIPs-compliant product prepared by PCMDI (ODS2.5) + PCMDI + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/out.log b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/out.log new file mode 100644 index 000000000..e69de29bb diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/output.json b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/output.json new file mode 100644 index 000000000..21a8b413a --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/output.json @@ -0,0 +1,72 @@ +{ + "index": "/executions/recipe_20250908_083356/index.html", + "provenance": { + "environment": {}, + "modeldata": [], + "obsdata": {}, + "log": "/executions/recipe_20250908_083356/run/main_log_debug.txt" + }, + "data": { + "executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot.nc": { + "filename": "executions/recipe_20250908_083356/work/tas_trends/plot/seaborn_barplot.nc", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + }, + "executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot.nc": { + "filename": "executions/recipe_20250908_083356/work/ua200_trends/plot/seaborn_barplot.nc", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + }, + "executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot.nc": { + "filename": "executions/recipe_20250908_083356/work/pr_trends/plot/seaborn_barplot.nc", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + }, + "executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot.nc": { + "filename": "executions/recipe_20250908_083356/work/hus200_trends/plot/seaborn_barplot.nc", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + }, + "executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot.nc": { + "filename": "executions/recipe_20250908_083356/work/psl_trends/plot/seaborn_barplot.nc", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + } + }, + "plots": { + "executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot.png": { + "filename": "executions/recipe_20250908_083356/plots/tas_trends/plot/seaborn_barplot.png", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + }, + "executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot.png": { + "filename": "executions/recipe_20250908_083356/plots/ua200_trends/plot/seaborn_barplot.png", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + }, + "executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot.png": { + "filename": "executions/recipe_20250908_083356/plots/pr_trends/plot/seaborn_barplot.png", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + }, + "executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot.png": { + "filename": "executions/recipe_20250908_083356/plots/hus200_trends/plot/seaborn_barplot.png", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + }, + "executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot.png": { + "filename": "executions/recipe_20250908_083356/plots/psl_trends/plot/seaborn_barplot.png", + "long_name": "Seaborn barplot for one or more dataset(s)", + "description": "" + } + }, + "html": { + "/executions/recipe_20250908_083356/index.html": { + "filename": "/executions/recipe_20250908_083356/index.html", + "long_name": "Results page", + "description": "Page showing the executions of the ESMValTool run." + } + }, + "metrics": null, + "diagnostics": {} +} \ No newline at end of file diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/recipe.yml b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/recipe.yml new file mode 100644 index 000000000..0861dc7d6 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/recipe.yml @@ -0,0 +1,537 @@ +documentation: + description: Box plot, linear trends for the 46 IPCC AR6 reference regions for land + (Iturbide et al., 2020). The diagnostic called in this recipe uses the seaborn.boxplot + function. See seaborn manual for detailed information (https://seaborn.pydata.org/generated/seaborn.boxplot.html). + authors: + - schlund_manuel + - weigel_katja + maintainer: + - weigel_katja + title: Linear trends. +datasets: [] +preprocessors: + trend_tas: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: K yr-1 + trend_pr: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: mm kg m-3 day-1 yr-1 + trend_psl: + custom_order: true + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: m-1 kg s-2 yr-1 + trend_ua200: + custom_order: true + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: m s-1 yr-1 + trend_hus200: + custom_order: true + extract_levels: + levels: 20000 + scheme: linear + coordinate: air_pressure + extract_shape: + shapefile: ar6 + decomposed: true + ids: + Acronym: + - NWN + - NEN + - GIC + - WNA + - CNA + - ENA + - NCA + - SCA + - CAR + - NWS + - NSA + - NES + - SAM + - SWS + - SES + - SSA + - NEU + - WCE + - EEU + - MED + - SAH + - WAF + - CAF + - NEAF + - SEAF + - WSAF + - ESAF + - MDG + - RAR + - WSB + - ESB + - RFE + - WCA + - ECA + - TIB + - EAS + - ARP + - SAS + - SEA + - NAU + - CAU + - EAU + - SAU + - NZ + - WAN + - EAN + area_statistics: + operator: mean + linear_trend: null + convert_units: + units: year-1 +diagnostics: + tas_trends: + variables: + tas: + preprocessor: trend_tas + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: HadCRUT5 + project: OBS + type: ground + version: 5.0.1.0-analysis + tier: 2 + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: tas + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: tas trend [K/yr] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Near-Surface Air Temperature + pr_trends: + variables: + pr: + preprocessor: trend_pr + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: GPCP-V2.3 + project: obs4MIPs + tier: 1 + reference_for_metric: true + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: pr + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: pr trend [mm kg m-3 day-1 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Precipitation + psl_trends: + variables: + psl: + preprocessor: trend_psl + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: psl + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + legend_title: Data + plot_object_methods: + set_xlabel: region + set_ylabel: psl trend [m-1 kg s-2 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Sea Level Pressure + ua200_trends: + variables: + ua: + preprocessor: trend_ua200 + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: ERA-5 + project: obs4MIPs + tier: 1 + reference_for_metric: true' + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: ua + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + plot_object_methods: + set_xlabel: region + set_ylabel: ua trend [m s-1 yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Zonal Wind at 200 hPa + hus200_trends: + variables: + hus: + preprocessor: trend_hus200 + mip: Amon + timerange: 1980/2009 + additional_datasets: + - dataset: ERA5 + project: native6 + type: reanaly + version: v1 + tier: 3 + reference_for_metric: true + - project: CMIP6 + activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + exp: historical + grid: gn + mip: Amon + scripts: + plot: + script: seaborn_diag.py + seaborn_func: barplot + reset_index: true + write_netcdf: true + seaborn_kwargs: + x: shape_id + y: hus + hue: dataset + add_aux_coords: true + facets_as_columns: + - dataset + plot_object_methods: + set_xlabel: region + set_ylabel: hus trend [yr-1] + seaborn_settings: + style: ticks + rc: + figure.figsize: + - 28 + - 6 + suptitle: Trend in Specific Humidity at 200 hPa diff --git a/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/series.json b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/series.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/tests/test-data/regression/esmvaltool/regional-historical-trend/cmip6_gn_r1i1p1f1_ACCESS-ESM1-5__obs4mips_ERA-5/series.json @@ -0,0 +1 @@ +[] \ No newline at end of file