diff --git a/changelog/378.feature.md b/changelog/378.feature.md new file mode 100644 index 000000000..2a85a5293 --- /dev/null +++ b/changelog/378.feature.md @@ -0,0 +1 @@ +Added sea ice sensitivity diagnostic. diff --git a/packages/climate-ref-core/src/climate_ref_core/constraints.py b/packages/climate-ref-core/src/climate_ref_core/constraints.py index 716675fb1..39df08771 100644 --- a/packages/climate-ref-core/src/climate_ref_core/constraints.py +++ b/packages/climate-ref-core/src/climate_ref_core/constraints.py @@ -200,17 +200,27 @@ def apply( for facet, values in supplementary_facets.items(): mask = supplementary_group[facet].isin(values) supplementary_group = supplementary_group[mask] - - if not supplementary_group.empty and self.optional_matching_facets: - facets = list(self.matching_facets + self.optional_matching_facets) + if not supplementary_group.empty: + matching_facets = list(self.matching_facets) + facets = matching_facets + list(self.optional_matching_facets) datasets = group[facets].drop_duplicates() indices = set() for i in range(len(datasets)): - scores = (supplementary_group[facets] == datasets.iloc[i]).sum(axis=1) - matches = supplementary_group[scores == scores.max()] - # Select the latest version if there are multiple matches - matches = matches[matches["version"] == matches["version"].max()] - indices.add(matches.index[0]) + dataset = datasets.iloc[i] + # Restrict the supplementary datasets to those that match the main dataset. + supplementaries = supplementary_group[ + (supplementary_group[matching_facets] == dataset[matching_facets]).all(1) + ] + if not supplementaries.empty: + # Select the best matching supplementary dataset based on the optional matching facets. + scores = (supplementaries[facets] == dataset).sum(axis=1) + matches = supplementaries[scores == scores.max()] + if "version" in facets: + # Select the latest version if there are multiple matches + matches = matches[matches["version"] == matches["version"].max()] + # Select one match per dataset + indices.add(matches.index[0]) + supplementary_group = supplementary_group.loc[list(indices)].drop_duplicates() return pd.concat([group, supplementary_group]) diff --git a/packages/climate-ref-core/tests/unit/test_constraints.py b/packages/climate-ref-core/tests/unit/test_constraints.py index 774589903..26ae66ed6 100644 --- a/packages/climate-ref-core/tests/unit/test_constraints.py +++ b/packages/climate-ref-core/tests/unit/test_constraints.py @@ -60,6 +60,21 @@ class TestAddSupplementaryDataset: ), [0], ), + ( + # Test that missing supplementary files are handled gracefully. + pd.DataFrame( + { + "variable_id": ["tas", "areacella", "areacella", "tas"], + "source_id": ["X", "X", "X", "Y"], + "grid_label": ["gn"] * 4, + "table_id": ["Amon", "fx", "fx", "Amon"], + "experiment_id": ["historical"] * 4, + "member_id": ["r1i1p1f1", "r1i1p1f1", "r2i1p1f1", "r2i1p1f1"], + "version": ["v20210316", "v20210316", "v20210317", "v20210317"], + } + ), + [0, 3, 1], + ), ( # Test that the grid_label matches. pd.DataFrame( @@ -68,7 +83,7 @@ class TestAddSupplementaryDataset: "source_id": ["ACCESS-ESM1-5"] * 3, "grid_label": ["gn", "gn", "gr"], "table_id": ["Amon", "fx", "fx"], - "experiment_id": ["historical"] * 3, + "experiment_id": ["historical", "piControl", "historical"], "member_id": ["r1i1p1f1", "r2i1p1f1", "r1i1p1f1"], "version": ["v20210316"] * 3, } diff --git a/packages/climate-ref-esmvaltool/pyproject.toml b/packages/climate-ref-esmvaltool/pyproject.toml index 123802a30..0b875ad4d 100644 --- a/packages/climate-ref-esmvaltool/pyproject.toml +++ b/packages/climate-ref-esmvaltool/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ dependencies = [ "pooch >= 1.8", "climate-ref-core", - "ruamel.yaml >= 0.18", + "pyyaml", "xarray >= 2023.3.0", ] [project.entry-points."climate-ref.providers"] 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 43babd5b3..342b4aeaf 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 @@ -6,6 +6,7 @@ from climate_ref_esmvaltool.diagnostics.enso import ENSOBasicClimatology, ENSOCharacteristics from climate_ref_esmvaltool.diagnostics.example import GlobalMeanTimeseries 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 from climate_ref_esmvaltool.diagnostics.tcre import TransientClimateResponseEmissions from climate_ref_esmvaltool.diagnostics.zec import ZeroEmissionCommitment @@ -18,6 +19,7 @@ "EquilibriumClimateSensitivity", "GlobalMeanTimeseries", "SeaIceAreaBasic", + "SeaIceSensitivity", "TransientClimateResponse", "TransientClimateResponseEmissions", "ZeroEmissionCommitment", 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 bbc312a74..768b207e3 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 @@ -4,8 +4,8 @@ from typing import ClassVar import pandas +import yaml from loguru import logger -from ruamel.yaml import YAML from climate_ref_core.dataset_registry import dataset_registry_manager from climate_ref_core.datasets import ExecutionDatasetCollection, SourceDatasetType @@ -19,8 +19,6 @@ from climate_ref_esmvaltool.recipe import load_recipe, prepare_climate_data from climate_ref_esmvaltool.types import MetricBundleArgs, OutputBundleArgs, Recipe -yaml = YAML() - class ESMValToolDiagnostic(CommandLineDiagnostic): """ESMValTool Diagnostic base class.""" @@ -177,7 +175,7 @@ def build_execution_result( # Add the plots and data files plot_suffixes = {".png", ".jpg", ".pdf", ".ps"} for metadata_file in result_dir.glob("run/*/*/diagnostic_provenance.yml"): - metadata = yaml.load(metadata_file.read_text(encoding="utf-8")) + metadata = yaml.safe_load(metadata_file.read_text(encoding="utf-8")) for filename in metadata: caption = metadata[filename].get("caption", "") relative_path = definition.as_relative_path(filename) diff --git a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/sea_ice_sensitivity.py b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/sea_ice_sensitivity.py new file mode 100644 index 000000000..26a5e86ef --- /dev/null +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/diagnostics/sea_ice_sensitivity.py @@ -0,0 +1,105 @@ +from pathlib import Path + +import pandas +import pandas as pd + +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.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 + + +class SeaIceSensitivity(ESMValToolDiagnostic): + """ + Calculate sea ice sensitivity. + """ + + name = "Sea ice sensitivity" + slug = "sea-ice-sensitivity" + base_recipe = "recipe_seaice_sensitivity.yml" + + variables = ( + "siconc", + "tas", + ) + + data_requirements = ( + DataRequirement( + source_type=SourceDatasetType.CMIP6, + filters=( + FacetFilter( + facets={ + "variable_id": variables, + "experiment_id": "historical", + }, + ), + ), + group_by=("experiment_id",), # this does nothing, but group_by cannot be empty + constraints=( + AddSupplementaryDataset.from_defaults("areacella", SourceDatasetType.CMIP6), + AddSupplementaryDataset.from_defaults("areacello", SourceDatasetType.CMIP6), + RequireContiguousTimerange(group_by=("instance_id",)), + RequireFacets("variable_id", variables), + # TODO: Add a constraint to ensure that tas, siconc and areacello + # are available for each model or alternatively filter out + # incomplete models below. + ), + ), + ) + facets = ("experiment_id", "source_id", "region", "metric") + + @staticmethod + def update_recipe(recipe: Recipe, input_files: pandas.DataFrame) -> None: + """Update the recipe.""" + recipe_variables = dataframe_to_recipe(input_files) + datasets = recipe_variables["tas"]["additional_datasets"] + for dataset in datasets: + dataset.pop("mip") + dataset["timerange"] = "1979/2014" + recipe["datasets"] = datasets + + @staticmethod + def format_result( + 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": [ + "source_id", + "region", + "metric", + ], + "source_id": {}, + "region": {}, + "metric": {}, + } + for region in "antarctic", "arctic": + df = pd.read_csv( + result_dir / "work" / region / "sea_ice_sensitivity_script" / "plotted_values.csv" + ) + df = df.rename(columns={"Unnamed: 0": "source_id"}).drop(columns=["label"]) + metric_args[MetricCV.DIMENSIONS.value]["region"][region] = {} + for metric in df.columns[1:]: + metric_args[MetricCV.DIMENSIONS.value]["metric"][metric] = {} + for row in df.itertuples(index=False): + source_id = row.source_id + metric_args[MetricCV.DIMENSIONS.value]["source_id"][source_id] = {} + for metric, value in zip(df.columns[1:], row[1:]): + if source_id not in metric_args[MetricCV.RESULTS.value]: + metric_args[MetricCV.RESULTS.value][source_id] = {} + if region not in metric_args[MetricCV.RESULTS.value][source_id]: + metric_args[MetricCV.RESULTS.value][source_id][region] = {} + metric_args[MetricCV.RESULTS.value][source_id][region][metric] = value + + 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 74872f6b0..8ad86ea2a 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipe.py @@ -5,15 +5,13 @@ from typing import TYPE_CHECKING, Any import pooch -from ruamel.yaml import YAML +import yaml from climate_ref_esmvaltool.types import Recipe if TYPE_CHECKING: import pandas as pd -yaml = YAML() - FACETS = { "CMIP6": { "activity": "activity_id", @@ -115,8 +113,8 @@ def dataframe_to_recipe(files: pd.DataFrame) -> dict[str, Any]: return variables -_ESMVALTOOL_COMMIT = "58fd0b8ece981bc97c4fbd213b11f2228d90db28" -_ESMVALTOOL_VERSION = f"2.13.0.dev65+g{_ESMVALTOOL_COMMIT[:9]}" +_ESMVALTOOL_COMMIT = "8f56863a70ba4df76ec501ba0372c571a0af6cf9" +_ESMVALTOOL_VERSION = f"2.13.0.dev120+g{_ESMVALTOOL_COMMIT[:9]}" _RECIPES = pooch.create( path=pooch.os_cache("climate_ref_esmvaltool"), @@ -144,7 +142,7 @@ def load_recipe(recipe: str) -> Recipe: The loaded recipe. """ filename = _RECIPES.fetch(recipe) - return yaml.load(Path(filename).read_text(encoding="utf-8")) # type: ignore[no-any-return] + return 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: 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 d3f259447..58e713ea9 100644 --- a/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt +++ b/packages/climate-ref-esmvaltool/src/climate_ref_esmvaltool/recipes.txt @@ -1,10 +1,11 @@ examples/recipe_python.yml ab3f06d269bb2c1368f4dc39da9bcb232fb2adb1fa556ba769e6c16294ffb4a3 recipe_calculate_gwl_exceedance_stats.yml 5aa266abc9a8029649b689a2b369a47623b0935d609354332ff4148994642d6b recipe_ecs.yml 0cc57034fcb64e32015b4ff949ece5df8cdb8c6f493618b50ceded119fb37918 +recipe_seaice_sensitivity.yml f7247c076e161c582d422947c8155f3ca98549e6f2e4c3b1c76414786d7e50c5 recipe_tcr.yml 35f9ef035a4e71aff5cac5dd26c49da2162fc00291bf3b0bd16b661b7b2f606b recipe_tcre.yml 48fc9e3baf541bbcef7491853ea3a774053771dca33352b41466425faeaa38af recipe_zec.yml b0af7f789b7610ab3f29a6617124aa40c40866ead958204fc199eaf82863de51 ref/recipe_enso_basicclimatology.yml 9ea7deb7ee668e39ac44618b96496d898bd82285c22dcee4fce4695e0c9fa82b ref/recipe_enso_characteristics.yml 34c2518b138068ac96d212910b979d54a8fcedee2c0089b5acd56a42c41dc3e4 -ref/recipe_ref_cre.yml 4f35d9639f1008be3b5382a5bd8933a855cb5368ccf5d04a1c70227172e2e82c +ref/recipe_ref_cre.yml 4375f262479c3b3e1b348b71080a6d758e195bda76516a591182045a3a29aa32 ref/recipe_ref_sea_ice_area_basic.yml 7d01a8527880663ca28284772f83a8356d9972fb4f022a4000e50a56ce044b09 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 new file mode 100644 index 000000000..48f2ad1d5 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/input_files_sea_ice_sensitivity.json @@ -0,0 +1,506 @@ +{ + "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/test_base.py b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_base.py index 2cf384adf..26f87f243 100644 --- a/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_base.py +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_base.py @@ -3,14 +3,12 @@ import climate_ref_esmvaltool.diagnostics.base import pandas import pytest +import yaml from climate_ref_esmvaltool.diagnostics.base import ESMValToolDiagnostic from climate_ref_esmvaltool.types import Recipe -from ruamel.yaml import YAML from climate_ref_core.pycmec.output import OutputCV -yaml = YAML() - @pytest.fixture def mock_diagnostic(): @@ -40,7 +38,7 @@ def test_build_cmd(mocker, tmp_path, metric_definition, mock_diagnostic, data_di recipe = output_dir / "recipe.yml" assert cmd == ["esmvaltool", "run", f"--config-dir={config_dir}", f"{recipe}"] assert (output_dir / "climate_data").is_dir() - config = yaml.load((config_dir / "config.yml").read_text(encoding="utf-8")) + config = yaml.safe_load((config_dir / "config.yml").read_text(encoding="utf-8")) assert len(config["rootpath"]) == 5 if data_dir_exists else 1 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 new file mode 100644 index 000000000..a2028bf88 --- /dev/null +++ b/packages/climate-ref-esmvaltool/tests/unit/diagnostics/test_sea_ice_sensitivity.py @@ -0,0 +1,46 @@ +from pathlib import Path + +import pandas +from climate_ref_esmvaltool.diagnostics import SeaIceSensitivity +from climate_ref_esmvaltool.recipe import load_recipe + + +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 = 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/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/config/config.yml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/config/config.yml new file mode 100644 index 000000000..ded86a5a7 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/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/bandela/.cache/climate_ref/ESMValTool/OBS + OBS6: /home/bandela/.cache/climate_ref/ESMValTool/OBS + native6: /home/bandela/.cache/climate_ref/ESMValTool/RAWOBS + obs4MIPs: + - /climate_data + - /home/bandela/.cache/climate_ref/ESMValTool +search_esgf: never diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/diagnostic.json b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/diagnostic.json new file mode 100644 index 000000000..f05b83328 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/diagnostic.json @@ -0,0 +1,84 @@ +{ + "DIMENSIONS": { + "json_structure": [ + "experiment_id", + "source_id", + "region", + "metric" + ], + "source_id": { + "ACCESS-ESM1-5": {}, + "CanESM5": {}, + "HadGEM3-GC31-LL": {} + }, + "region": { + "antarctic": {}, + "arctic": {} + }, + "metric": { + "direct_sensitivity_(notz-style)": {}, + "annual_siconc_trend": {}, + "annual_tas_trend": {}, + "direct_r_val": {}, + "direct_p_val": {} + }, + "experiment_id": { + "historical": {} + } + }, + "RESULTS": { + "historical": { + "ACCESS-ESM1-5": { + "antarctic": { + "direct_sensitivity_(notz-style)": -0.0093089389765667, + "annual_siconc_trend": -0.0002971439814176, + "annual_tas_trend": 0.0325482853284367, + "direct_r_val": -0.747116470283511, + "direct_p_val": 1.6582163952524357e-7 + }, + "arctic": { + "direct_sensitivity_(notz-style)": -0.0154132028358053, + "annual_siconc_trend": -0.0005345031872321, + "annual_tas_trend": 0.0325482853284367, + "direct_r_val": -0.8745553580707366, + "direct_p_val": 3.1662085847651657e-12 + } + }, + "CanESM5": { + "antarctic": { + "direct_sensitivity_(notz-style)": -0.001262288391343, + "annual_siconc_trend": 7.261761385609422e-6, + "annual_tas_trend": 0.0325509678903233, + "direct_r_val": -0.0859323266341288, + "direct_p_val": 0.6182576601557226 + }, + "arctic": { + "direct_sensitivity_(notz-style)": -0.0196841472286724, + "annual_siconc_trend": -0.0007012069342604, + "annual_tas_trend": 0.0325509678903233, + "direct_r_val": -0.7949743656112556, + "direct_p_val": 7.008218341630712e-9 + } + }, + "HadGEM3-GC31-LL": { + "antarctic": { + "direct_sensitivity_(notz-style)": -0.0240608522772309, + "annual_siconc_trend": -0.0010106442791242, + "annual_tas_trend": 0.038400767361949, + "direct_r_val": -0.9238815860411153, + "direct_p_val": 9.587413509948313e-16 + }, + "arctic": { + "direct_sensitivity_(notz-style)": -0.0182986828946996, + "annual_siconc_trend": -0.0007086997732451, + "annual_tas_trend": 0.038400767361949, + "direct_r_val": -0.9375420714907108, + "direct_p_val": 3.695123061364841e-17 + } + } + } + }, + "PROVENANCE": null, + "DISCLAIMER": null, + "NOTES": null +} \ No newline at end of file diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/index.html b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/index.html new file mode 100644 index 000000000..33b09ba9b --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/index.html @@ -0,0 +1,488 @@ + + + + + + + + Recipe + + + + + + + + + +
+
+ ESMValTool logo. +
+
+ +

Sea ice sensitivity

+ +

+ 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

+ + + +

Maintainers

+ +
    + +
  • Naomi Parsons (MetOffice, UK; None)
  • + +
+ +

Projects

+ +
    + +
+ +

References

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

Antarctic

+

Plots annual mean sea ice sensitivity below 0 latitude in millions of square kilometres

+ + + + +

Antarctic: Sea Ice Sensitivity Script

+ + + +
+
+ + Sensitivity of sea ice area to annual mean global warming. + +
+ Sensitivity of sea ice area to annual mean global warming. +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + +
+
+ + Decadal trends of sea ice area and global mean temperature. + +
+ Decadal trends of sea ice area and global mean temperature. +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + + + + +
+ + + +
+

Arctic

+

Plots September sea ice sensitivity above 0 latitude in millions of square kilometres

+ + + + +

Arctic: Sea Ice Sensitivity Script

+ + + +
+
+ + Sensitivity of sea ice area to annual mean global warming.Mean (dashed), standard deviation (shaded) and plausible values from 1979-2014. + +
+ Sensitivity of sea ice area to annual mean global warming.Mean (dashed), standard deviation (shaded) and plausible values from 1979-2014. +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + +
+
+ + Decadal trends of sea ice area and global mean temperature. + +
+ Decadal trends of sea ice area and global mean temperature. +
+
+ download | + references | + extra data citation | + provenance +
+
+
+ + + + + + +
+ + +
+ +

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/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png new file mode 100644 index 000000000..e8768d83b Binary files /dev/null and b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png differ diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity_citation.bibtex b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity_citation.bibtex new file mode 100644 index 000000000..4bb8ce83d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity_citation.bibtex @@ -0,0 +1,49 @@ +@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.3610, + url = {https://doi.org/10.22033/ESGF/CMIP6.3610}, + title = {CCCma CanESM5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Swart, Neil Cameron and Cole, Jason N.S. and Kharin, Viatcheslav V. and Lazare, Mike and Scinocca, John F. and Gillett, Nathan P. and Anstey, James and Arora, Vivek and Christian, James R. and Jiao, Yanjun and Lee, Warren G. and Majaess, Fouad and Saenko, Oleg A. and Seiler, Christian and Seinen, Clint and Shao, Andrew and Solheim, Larry and von Salzen, Knut and Yang, Duo and Winter, Barbara and Sigmond, Michael}, + doi = {10.22033/ESGF/CMIP6.3610}, +} + +@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}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6109, + url = {https://doi.org/10.22033/ESGF/CMIP6.6109}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6109}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6294, + url = {https://doi.org/10.22033/ESGF/CMIP6.6294}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP piControl}, + publisher = {Earth System Grid Federation}, + year = 2018, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6294}, +} diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity_data_citation_info.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity_data_citation_info.txt new file mode 100644 index 000000000..671d7a0e4 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity_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.CCCma.CanESM5.historical +- 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.CMIP.MOHC.HadGEM3-GC31-LL.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity_provenance.xml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity_provenance.xml new file mode 100644 index 000000000..2f586ab2a --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity_provenance.xml @@ -0,0 +1,1130 @@ + + + + + + + + + + + + + + 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 + + + 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 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-04-30T17:32:17Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-04-30T17:32:17Z ;rewrote data to be consistent with CMIP for variable tas found in table Amon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Amon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/872062df-acae-499b-aa0f-9eaca7681abc + tas + r1i1p1f1 + v20190429 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T14:46:52Z + 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-15T14:46:52Z ; 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: areacello (['area_t', 'ht']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + ocean + 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 + Ofx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/fd041f03-fb0f-4c94-9e15-21733dceac88 + areacello + r1i1p1f1 + v20191115 + + + CMIP + CanESM5 + CanESM5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CCCma + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_antarctic_avg_ann_sea_ice + CMIP6 + 0 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20190429 + {'operator': 'mean'} + {'operator': 'sum'} + {'units': '1e6 km2'} + {'end_latitude': 0, 'end_longitude': 360, 'start_latitude': -90, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:25Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-07-08T15:34:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:24Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 250 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + fx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/281b65dd-1173-4951-bd8e-3bcbdd356aad + areacella + r1i1p1f1 + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 1 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20191115 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + antarctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + mon + gn + MOHC + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_antarctic_avg_ann_sea_ice + CMIP6 + 2 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200330 + {'operator': 'mean'} + {'operator': 'sum'} + {'units': '1e6 km2'} + {'end_latitude': 0, 'end_longitude': 360, 'start_latitude': -90, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc')} + + + + + + + + + + + + + + + + + MetOffice, UK + 0000-0002-0489-4238 + + + + + + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + antarctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + mon + gn + MOHC + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 2 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190624 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc')} + + + + + + + + + MetOffice, UK + + + + + + + + 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 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2020-03-11T10:57:50Z + 6.2.37.5 + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2020-03-11T10:57:26Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2020-03-11T10:57:03Z MIP Convert v1.3.3, Python v2.7.16, Iris v2.2.0, Numpy v1.15.4, cftime v1.0.0b1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 100 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01 + r1i1p1f1 + 1 + model-output + 1 + seaIce + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + SImon + Creation Date:(13 December 2018) MD5:f0588f7f55b5732b17302f8d9d0d7b8c + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/c9522497-eaec-4515-bc72-029a39cdaa7b + siconc + siconc + r1i1p1f3 + + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:44:03Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-01T18:44:03Z ;rewrote data to be consistent with CMIP for variable areacello found in table Ofx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + ocean + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Ofx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e62548a8-4b49-4de6-9375-02bc86ed5797 + areacello + r1i1p1f1 + v20190429 + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CSIRO + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_antarctic_avg_ann_sea_ice + CMIP6 + 1 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200817 + {'operator': 'mean'} + {'operator': 'sum'} + {'units': '1e6 km2'} + {'end_latitude': 0, 'end_longitude': 360, 'start_latitude': -90, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-02T07:11:34Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-02T07:11:34Z ;rewrote data to be consistent with CMIP for variable siconc found in table SImon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + seaIce + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + SImon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e30786bd-a632-4351-a485-339caeb03972 + siconc + r1i1p1f1 + v20190429 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:36:43Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-05-01T18:36:43Z ;rewrote data to be consistent with CMIP for variable areacella found in table fx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + fx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/dd606980-b677-4d42-92fc-b7d0734af851 + areacella + r1i1p1f1 + v20190429 + + + MetOffice, UK + 0000-0002-2955-7254 + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:30Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2019-07-08T15:34:30Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:29Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 100 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + ocean + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Ofx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/8fe14488-5391-4968-bc14-94b92e4f9f59 + areacello + r1i1p1f1 + + + CMIP + CanESM5 + CanESM5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CCCma + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 0 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190429 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2020-08-17T00:32:02Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2020-08-17T00:32:02Z ; 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: siconc (['aice']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + seaIce + 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 + SImon + Creation Date:(30 April 2019) MD5:5bd755e94c2173cb3050a0f3480f60c4 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/931b0664-d90c-46d5-b9fb-f7f17b8cefd5 + siconc + r1i1p1f1 + v20200817 + + + Sensitivity of sea ice area to annual mean global warming. + {'annual trends (Roach-style plot)': {'first point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'second point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'third point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}}, 'observation period': None, 'sea ice sensitivity (Notz-style plot)': {'mean': None, 'plausible range': None, 'standard deviation': None}} + other + tcp://127.0.0.1:41245 + sea_ice_sensitivity_script + seaice/seaice_sensitivity.py + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2019-06-19T12:07:37Z + 6.2.20.1 + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-06-19T11:56:44Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-06-19T11:56:29Z MIP Convert v1.1.0, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 250 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Amon + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/bc7c9a22-a05f-4154-9781-2b2cd934748e + tas + r1i1p1f3 + + + + + + + + + + + + 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. + + [] + + + + + + diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png new file mode 100644 index 000000000..cf4abf3b2 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png differ diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends_citation.bibtex b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends_citation.bibtex new file mode 100644 index 000000000..4bb8ce83d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends_citation.bibtex @@ -0,0 +1,49 @@ +@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.3610, + url = {https://doi.org/10.22033/ESGF/CMIP6.3610}, + title = {CCCma CanESM5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Swart, Neil Cameron and Cole, Jason N.S. and Kharin, Viatcheslav V. and Lazare, Mike and Scinocca, John F. and Gillett, Nathan P. and Anstey, James and Arora, Vivek and Christian, James R. and Jiao, Yanjun and Lee, Warren G. and Majaess, Fouad and Saenko, Oleg A. and Seiler, Christian and Seinen, Clint and Shao, Andrew and Solheim, Larry and von Salzen, Knut and Yang, Duo and Winter, Barbara and Sigmond, Michael}, + doi = {10.22033/ESGF/CMIP6.3610}, +} + +@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}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6109, + url = {https://doi.org/10.22033/ESGF/CMIP6.6109}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6109}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6294, + url = {https://doi.org/10.22033/ESGF/CMIP6.6294}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP piControl}, + publisher = {Earth System Grid Federation}, + year = 2018, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6294}, +} diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends_data_citation_info.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends_data_citation_info.txt new file mode 100644 index 000000000..671d7a0e4 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends_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.CCCma.CanESM5.historical +- 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.CMIP.MOHC.HadGEM3-GC31-LL.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends_provenance.xml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends_provenance.xml new file mode 100644 index 000000000..0afe36840 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends_provenance.xml @@ -0,0 +1,1130 @@ + + + + + + + + + + + + + + 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 + + + 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 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-04-30T17:32:17Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-04-30T17:32:17Z ;rewrote data to be consistent with CMIP for variable tas found in table Amon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Amon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/872062df-acae-499b-aa0f-9eaca7681abc + tas + r1i1p1f1 + v20190429 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Decadal trends of sea ice area and global mean temperature. + {'annual trends (Roach-style plot)': {'first point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'second point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'third point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}}, 'observation period': None, 'sea ice sensitivity (Notz-style plot)': {'mean': None, 'plausible range': None, 'standard deviation': None}} + other + tcp://127.0.0.1:41245 + sea_ice_sensitivity_script + seaice/seaice_sensitivity.py + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T14:46:52Z + 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-15T14:46:52Z ; 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: areacello (['area_t', 'ht']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + ocean + 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 + Ofx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/fd041f03-fb0f-4c94-9e15-21733dceac88 + areacello + r1i1p1f1 + v20191115 + + + + + + + + CMIP + CanESM5 + CanESM5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CCCma + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_antarctic_avg_ann_sea_ice + CMIP6 + 0 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20190429 + {'operator': 'mean'} + {'operator': 'sum'} + {'units': '1e6 km2'} + {'end_latitude': 0, 'end_longitude': 360, 'start_latitude': -90, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:25Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-07-08T15:34:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:24Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 250 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + fx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/281b65dd-1173-4951-bd8e-3bcbdd356aad + areacella + r1i1p1f1 + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 1 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20191115 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + antarctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + mon + gn + MOHC + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_antarctic_avg_ann_sea_ice + CMIP6 + 2 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200330 + {'operator': 'mean'} + {'operator': 'sum'} + {'units': '1e6 km2'} + {'end_latitude': 0, 'end_longitude': 360, 'start_latitude': -90, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc')} + + + + + + + + + + + + + + + + + MetOffice, UK + 0000-0002-0489-4238 + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + antarctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + mon + gn + MOHC + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 2 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190624 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc')} + + + + + + + + + + + + + + MetOffice, UK + + + + + + + + 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 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2020-03-11T10:57:50Z + 6.2.37.5 + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2020-03-11T10:57:26Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2020-03-11T10:57:03Z MIP Convert v1.3.3, Python v2.7.16, Iris v2.2.0, Numpy v1.15.4, cftime v1.0.0b1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 100 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01 + r1i1p1f1 + 1 + model-output + 1 + seaIce + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + SImon + Creation Date:(13 December 2018) MD5:f0588f7f55b5732b17302f8d9d0d7b8c + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/c9522497-eaec-4515-bc72-029a39cdaa7b + siconc + siconc + r1i1p1f3 + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:44:03Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-01T18:44:03Z ;rewrote data to be consistent with CMIP for variable areacello found in table Ofx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + ocean + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Ofx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e62548a8-4b49-4de6-9375-02bc86ed5797 + areacello + r1i1p1f1 + v20190429 + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CSIRO + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_antarctic_avg_ann_sea_ice + CMIP6 + 1 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200817 + {'operator': 'mean'} + {'operator': 'sum'} + {'units': '1e6 km2'} + {'end_latitude': 0, 'end_longitude': 360, 'start_latitude': -90, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-02T07:11:34Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-02T07:11:34Z ;rewrote data to be consistent with CMIP for variable siconc found in table SImon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + seaIce + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + SImon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e30786bd-a632-4351-a485-339caeb03972 + siconc + r1i1p1f1 + v20190429 + + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:36:43Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-05-01T18:36:43Z ;rewrote data to be consistent with CMIP for variable areacella found in table fx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + fx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/dd606980-b677-4d42-92fc-b7d0734af851 + areacella + r1i1p1f1 + v20190429 + + + MetOffice, UK + 0000-0002-2955-7254 + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:30Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2019-07-08T15:34:30Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:29Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 100 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + ocean + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Ofx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/8fe14488-5391-4968-bc14-94b92e4f9f59 + areacello + r1i1p1f1 + + + CMIP + CanESM5 + CanESM5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CCCma + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 0 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190429 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2020-08-17T00:32:02Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2020-08-17T00:32:02Z ; 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: siconc (['aice']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + seaIce + 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 + SImon + Creation Date:(30 April 2019) MD5:5bd755e94c2173cb3050a0f3480f60c4 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/931b0664-d90c-46d5-b9fb-f7f17b8cefd5 + siconc + r1i1p1f1 + v20200817 + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2019-06-19T12:07:37Z + 6.2.20.1 + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-06-19T11:56:44Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-06-19T11:56:29Z MIP Convert v1.1.0, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 250 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Amon + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/bc7c9a22-a05f-4154-9781-2b2cd934748e + tas + r1i1p1f3 + + + + + + + + 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. + + [] + + + + + + diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png new file mode 100644 index 000000000..83fb71c95 Binary files /dev/null and b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png differ diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity_citation.bibtex b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity_citation.bibtex new file mode 100644 index 000000000..4bb8ce83d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity_citation.bibtex @@ -0,0 +1,49 @@ +@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.3610, + url = {https://doi.org/10.22033/ESGF/CMIP6.3610}, + title = {CCCma CanESM5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Swart, Neil Cameron and Cole, Jason N.S. and Kharin, Viatcheslav V. and Lazare, Mike and Scinocca, John F. and Gillett, Nathan P. and Anstey, James and Arora, Vivek and Christian, James R. and Jiao, Yanjun and Lee, Warren G. and Majaess, Fouad and Saenko, Oleg A. and Seiler, Christian and Seinen, Clint and Shao, Andrew and Solheim, Larry and von Salzen, Knut and Yang, Duo and Winter, Barbara and Sigmond, Michael}, + doi = {10.22033/ESGF/CMIP6.3610}, +} + +@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}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6109, + url = {https://doi.org/10.22033/ESGF/CMIP6.6109}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6109}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6294, + url = {https://doi.org/10.22033/ESGF/CMIP6.6294}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP piControl}, + publisher = {Earth System Grid Federation}, + year = 2018, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6294}, +} diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity_data_citation_info.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity_data_citation_info.txt new file mode 100644 index 000000000..671d7a0e4 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity_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.CCCma.CanESM5.historical +- 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.CMIP.MOHC.HadGEM3-GC31-LL.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity_provenance.xml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity_provenance.xml new file mode 100644 index 000000000..5d0af97d2 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity_provenance.xml @@ -0,0 +1,1130 @@ + + + + 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 + + + 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 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-04-30T17:32:17Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-04-30T17:32:17Z ;rewrote data to be consistent with CMIP for variable tas found in table Amon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Amon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/872062df-acae-499b-aa0f-9eaca7681abc + tas + r1i1p1f1 + v20190429 + + + + + + + + + + + + + + + + + + + + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + arctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + mon + gn + MOHC + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_arctic_sept_sea_ice + CMIP6 + 2 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200330 + {'operator': 'sum'} + {'units': '1e6 km2'} + {'month': 9} + {'end_latitude': 90, 'end_longitude': 360, 'start_latitude': 0, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc')} + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + arctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + mon + gn + MOHC + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 2 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190624 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc')} + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T14:46:52Z + 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-15T14:46:52Z ; 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: areacello (['area_t', 'ht']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + ocean + 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 + Ofx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/fd041f03-fb0f-4c94-9e15-21733dceac88 + areacello + r1i1p1f1 + v20191115 + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CSIRO + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_arctic_sept_sea_ice + CMIP6 + 1 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200817 + {'operator': 'sum'} + {'units': '1e6 km2'} + {'month': 9} + {'end_latitude': 90, 'end_longitude': 360, 'start_latitude': 0, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + + + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:25Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-07-08T15:34:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:24Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 250 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + fx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/281b65dd-1173-4951-bd8e-3bcbdd356aad + areacella + r1i1p1f1 + + + + Sensitivity of sea ice area to annual mean global warming.Mean (dashed), standard deviation (shaded) and plausible values from 1979-2014. + {'annual trends (Roach-style plot)': {'first point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'second point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'third point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}}, 'observation period': '1979-2014', 'sea ice sensitivity (Notz-style plot)': {'mean': -4.01, 'plausible range': 1.28, 'standard deviation': 0.32}} + other + tcp://127.0.0.1:41245 + sea_ice_sensitivity_script + seaice/seaice_sensitivity.py + + + + + + + + + + + + + + + + + + + + + + + CMIP + CanESM5 + CanESM5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CCCma + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_arctic_sept_sea_ice + CMIP6 + 0 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20190429 + {'operator': 'sum'} + {'units': '1e6 km2'} + {'month': 9} + {'end_latitude': 90, 'end_longitude': 360, 'start_latitude': 0, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + + + + MetOffice, UK + 0000-0002-0489-4238 + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 1 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20191115 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + + + 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 + + + MetOffice, UK + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2020-03-11T10:57:50Z + 6.2.37.5 + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2020-03-11T10:57:26Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2020-03-11T10:57:03Z MIP Convert v1.3.3, Python v2.7.16, Iris v2.2.0, Numpy v1.15.4, cftime v1.0.0b1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 100 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01 + r1i1p1f1 + 1 + model-output + 1 + seaIce + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + SImon + Creation Date:(13 December 2018) MD5:f0588f7f55b5732b17302f8d9d0d7b8c + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/c9522497-eaec-4515-bc72-029a39cdaa7b + siconc + siconc + r1i1p1f3 + + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:44:03Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-01T18:44:03Z ;rewrote data to be consistent with CMIP for variable areacello found in table Ofx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + ocean + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Ofx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e62548a8-4b49-4de6-9375-02bc86ed5797 + areacello + r1i1p1f1 + v20190429 + + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-02T07:11:34Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-02T07:11:34Z ;rewrote data to be consistent with CMIP for variable siconc found in table SImon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + seaIce + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + SImon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e30786bd-a632-4351-a485-339caeb03972 + siconc + r1i1p1f1 + v20190429 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:36:43Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-05-01T18:36:43Z ;rewrote data to be consistent with CMIP for variable areacella found in table fx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + fx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/dd606980-b677-4d42-92fc-b7d0734af851 + areacella + r1i1p1f1 + v20190429 + + + + + + + + MetOffice, UK + 0000-0002-2955-7254 + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:30Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2019-07-08T15:34:30Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:29Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 100 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + ocean + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Ofx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/8fe14488-5391-4968-bc14-94b92e4f9f59 + areacello + r1i1p1f1 + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2020-08-17T00:32:02Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2020-08-17T00:32:02Z ; 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: siconc (['aice']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + seaIce + 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 + SImon + Creation Date:(30 April 2019) MD5:5bd755e94c2173cb3050a0f3480f60c4 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/931b0664-d90c-46d5-b9fb-f7f17b8cefd5 + siconc + r1i1p1f1 + v20200817 + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2019-06-19T12:07:37Z + 6.2.20.1 + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-06-19T11:56:44Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-06-19T11:56:29Z MIP Convert v1.1.0, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 250 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Amon + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/bc7c9a22-a05f-4154-9781-2b2cd934748e + tas + r1i1p1f3 + + + + + + + + + + + + + + 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. + + [] + + + CMIP + CanESM5 + CanESM5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CCCma + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 0 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190429 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + + + + diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png new file mode 100644 index 000000000..59c33c84c Binary files /dev/null and b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png differ diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends_citation.bibtex b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends_citation.bibtex new file mode 100644 index 000000000..4bb8ce83d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends_citation.bibtex @@ -0,0 +1,49 @@ +@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.3610, + url = {https://doi.org/10.22033/ESGF/CMIP6.3610}, + title = {CCCma CanESM5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Swart, Neil Cameron and Cole, Jason N.S. and Kharin, Viatcheslav V. and Lazare, Mike and Scinocca, John F. and Gillett, Nathan P. and Anstey, James and Arora, Vivek and Christian, James R. and Jiao, Yanjun and Lee, Warren G. and Majaess, Fouad and Saenko, Oleg A. and Seiler, Christian and Seinen, Clint and Shao, Andrew and Solheim, Larry and von Salzen, Knut and Yang, Duo and Winter, Barbara and Sigmond, Michael}, + doi = {10.22033/ESGF/CMIP6.3610}, +} + +@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}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6109, + url = {https://doi.org/10.22033/ESGF/CMIP6.6109}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6109}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6294, + url = {https://doi.org/10.22033/ESGF/CMIP6.6294}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP piControl}, + publisher = {Earth System Grid Federation}, + year = 2018, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6294}, +} diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends_data_citation_info.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends_data_citation_info.txt new file mode 100644 index 000000000..671d7a0e4 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends_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.CCCma.CanESM5.historical +- 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.CMIP.MOHC.HadGEM3-GC31-LL.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends_provenance.xml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends_provenance.xml new file mode 100644 index 000000000..5481e080d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends_provenance.xml @@ -0,0 +1,1130 @@ + + + + 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 + + + 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 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-04-30T17:32:17Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-04-30T17:32:17Z ;rewrote data to be consistent with CMIP for variable tas found in table Amon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Amon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/872062df-acae-499b-aa0f-9eaca7681abc + tas + r1i1p1f1 + v20190429 + + + + + + + + + + + + + + + + + + + + + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + arctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + mon + gn + MOHC + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_arctic_sept_sea_ice + CMIP6 + 2 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200330 + {'operator': 'sum'} + {'units': '1e6 km2'} + {'month': 9} + {'end_latitude': 90, 'end_longitude': 360, 'start_latitude': 0, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc')} + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + arctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + mon + gn + MOHC + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 2 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190624 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc')} + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T14:46:52Z + 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-15T14:46:52Z ; 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: areacello (['area_t', 'ht']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + ocean + 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 + Ofx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/fd041f03-fb0f-4c94-9e15-21733dceac88 + areacello + r1i1p1f1 + v20191115 + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CSIRO + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_arctic_sept_sea_ice + CMIP6 + 1 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200817 + {'operator': 'sum'} + {'units': '1e6 km2'} + {'month': 9} + {'end_latitude': 90, 'end_longitude': 360, 'start_latitude': 0, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:25Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-07-08T15:34:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:24Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 250 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + fx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/281b65dd-1173-4951-bd8e-3bcbdd356aad + areacella + r1i1p1f1 + + + + + + + + + CMIP + CanESM5 + CanESM5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CCCma + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_arctic_sept_sea_ice + CMIP6 + 0 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20190429 + {'operator': 'sum'} + {'units': '1e6 km2'} + {'month': 9} + {'end_latitude': 90, 'end_longitude': 360, 'start_latitude': 0, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + + + + MetOffice, UK + 0000-0002-0489-4238 + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 1 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20191115 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + + + 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 + + + MetOffice, UK + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2020-03-11T10:57:50Z + 6.2.37.5 + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2020-03-11T10:57:26Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2020-03-11T10:57:03Z MIP Convert v1.3.3, Python v2.7.16, Iris v2.2.0, Numpy v1.15.4, cftime v1.0.0b1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 100 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01 + r1i1p1f1 + 1 + model-output + 1 + seaIce + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + SImon + Creation Date:(13 December 2018) MD5:f0588f7f55b5732b17302f8d9d0d7b8c + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/c9522497-eaec-4515-bc72-029a39cdaa7b + siconc + siconc + r1i1p1f3 + + + + + + + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:44:03Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-01T18:44:03Z ;rewrote data to be consistent with CMIP for variable areacello found in table Ofx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + ocean + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Ofx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e62548a8-4b49-4de6-9375-02bc86ed5797 + areacello + r1i1p1f1 + v20190429 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-02T07:11:34Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-02T07:11:34Z ;rewrote data to be consistent with CMIP for variable siconc found in table SImon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + seaIce + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + SImon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e30786bd-a632-4351-a485-339caeb03972 + siconc + r1i1p1f1 + v20190429 + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:36:43Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-05-01T18:36:43Z ;rewrote data to be consistent with CMIP for variable areacella found in table fx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + fx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/dd606980-b677-4d42-92fc-b7d0734af851 + areacella + r1i1p1f1 + v20190429 + + + + + + + + + + + + + MetOffice, UK + 0000-0002-2955-7254 + + + + + + + + + + + + Decadal trends of sea ice area and global mean temperature. + {'annual trends (Roach-style plot)': {'first point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'second point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'third point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}}, 'observation period': '1979-2014', 'sea ice sensitivity (Notz-style plot)': {'mean': -4.01, 'plausible range': 1.28, 'standard deviation': 0.32}} + other + tcp://127.0.0.1:41245 + sea_ice_sensitivity_script + seaice/seaice_sensitivity.py + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:30Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2019-07-08T15:34:30Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:29Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 100 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + ocean + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Ofx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/8fe14488-5391-4968-bc14-94b92e4f9f59 + areacello + r1i1p1f1 + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2020-08-17T00:32:02Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2020-08-17T00:32:02Z ; 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: siconc (['aice']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + seaIce + 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 + SImon + Creation Date:(30 April 2019) MD5:5bd755e94c2173cb3050a0f3480f60c4 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/931b0664-d90c-46d5-b9fb-f7f17b8cefd5 + siconc + r1i1p1f1 + v20200817 + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2019-06-19T12:07:37Z + 6.2.20.1 + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-06-19T11:56:44Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-06-19T11:56:29Z MIP Convert v1.1.0, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 250 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Amon + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/bc7c9a22-a05f-4154-9781-2b2cd934748e + tas + r1i1p1f3 + + + + + + + + + + + + + + + + + + + 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. + + [] + + + CMIP + CanESM5 + CanESM5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CCCma + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 0 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190429 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + + + + diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/diagnostic_provenance.yml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/diagnostic_provenance.yml new file mode 100644 index 000000000..a87b30b9f --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/diagnostic_provenance.yml @@ -0,0 +1,41 @@ +? /executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual + Antarctic sea ice sensitivity.png +: ancestors: + - /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + authors: + - sellar_alistair + - parsons_naomi + caption: Sensitivity of sea ice area to annual mean global warming. + plot_type: other +? /executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual + Antarctic sea ice trends.png +: ancestors: + - /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + authors: + - sellar_alistair + - parsons_naomi + caption: Decadal trends of sea ice area and global mean temperature. + plot_type: other +? /executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv +: ancestors: + - /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + authors: + - sellar_alistair + - parsons_naomi + caption: Annual (not decadal) figures + plot_type: other diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/log.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/log.txt new file mode 100644 index 000000000..82e940b31 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/log.txt @@ -0,0 +1,217 @@ +/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:esmvaltool.diag_scripts.shared._base:Starting diagnostic script sea_ice_sensitivity_script with configuration: +auxiliary_data_dir: /home/bandela/auxiliary_data +input_data: + ? /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: antarctic + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Sea-Ice Area Percentage (Ocean Grid) + mip: SImon + modeling_realm: + - seaIce + preprocessor: pp_antarctic_avg_ann_sea_ice + project: CMIP6 + recipe_dataset_index: 1 + short_name: siconc + standard_name: sea_ice_area_fraction + start_year: 1979 + timerange: 1979/2014 + units: 1e6 km2 + variable_group: siconc + version: v20200817 + ? /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + : activity: CMIP + alias: CanESM5 + dataset: CanESM5 + diagnostic: antarctic + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + frequency: mon + grid: gn + institute: CCCma + long_name: Sea-Ice Area Percentage (Ocean Grid) + mip: SImon + modeling_realm: + - seaIce + preprocessor: pp_antarctic_avg_ann_sea_ice + project: CMIP6 + recipe_dataset_index: 0 + short_name: siconc + standard_name: sea_ice_area_fraction + start_year: 1979 + timerange: 1979/2014 + units: 1e6 km2 + variable_group: siconc + version: v20190429 + ? /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + : activity: CMIP + alias: HadGEM3-GC31-LL + dataset: HadGEM3-GC31-LL + diagnostic: antarctic + end_year: 2014 + ensemble: r1i1p1f3 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + frequency: mon + grid: gn + institute: MOHC + long_name: Sea-Ice Area Percentage (Ocean Grid) + mip: SImon + modeling_realm: + - seaIce + preprocessor: pp_antarctic_avg_ann_sea_ice + project: CMIP6 + recipe_dataset_index: 2 + short_name: siconc + standard_name: sea_ice_area_fraction + start_year: 1979 + timerange: 1979/2014 + units: 1e6 km2 + variable_group: siconc + version: v20200330 + ? /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: antarctic + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: pp_avg_ann_global_temp + project: CMIP6 + recipe_dataset_index: 1 + short_name: tas + standard_name: air_temperature + start_year: 1979 + timerange: 1979/2014 + units: K + variable_group: tas + version: v20191115 + ? /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + : activity: CMIP + alias: CanESM5 + dataset: CanESM5 + diagnostic: antarctic + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + frequency: mon + grid: gn + institute: CCCma + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: pp_avg_ann_global_temp + project: CMIP6 + recipe_dataset_index: 0 + short_name: tas + standard_name: air_temperature + start_year: 1979 + timerange: 1979/2014 + units: K + variable_group: tas + version: v20190429 + ? /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + : activity: CMIP + alias: HadGEM3-GC31-LL + dataset: HadGEM3-GC31-LL + diagnostic: antarctic + end_year: 2014 + ensemble: r1i1p1f3 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + frequency: mon + grid: gn + institute: MOHC + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: pp_avg_ann_global_temp + project: CMIP6 + recipe_dataset_index: 2 + short_name: tas + standard_name: air_temperature + start_year: 1979 + timerange: 1979/2014 + units: K + variable_group: tas + version: v20190624 +input_files: +- /executions/recipe_20250821_141339/preproc/antarctic/siconc/metadata.yml +- /executions/recipe_20250821_141339/preproc/antarctic/tas/metadata.yml +log_level: info +observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: null + sea ice sensitivity (Notz-style plot): + mean: null + plausible range: null + standard deviation: null +output_file_type: png +plot_dir: /executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script +recipe: recipe.yml +run_dir: /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script +scheduler_address: tcp://127.0.0.1:41245 +script: sea_ice_sensitivity_script +version: 2.12.0 +work_dir: /executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script + +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script +INFO:seaice_sensitivity:Getting data from the config +INFO:seaice_sensitivity:Creating titles and observations dictionary +INFO:seaice_sensitivity:Listing datasets in the data +INFO:seaice_sensitivity:Not labelling dataset ACCESS-ESM1-5 in plots +INFO:seaice_sensitivity:Calculating data for Notz-style plot +INFO:seaice_sensitivity:Calculating data for Roach-style plot +INFO:seaice_sensitivity:Not labelling dataset CanESM5 in plots +INFO:seaice_sensitivity:Calculating data for Notz-style plot +INFO:seaice_sensitivity:Calculating data for Roach-style plot +INFO:seaice_sensitivity:Not labelling dataset HadGEM3-GC31-LL in plots +INFO:seaice_sensitivity:Calculating data for Notz-style plot +INFO:seaice_sensitivity:Calculating data for Roach-style plot +INFO:seaice_sensitivity:Writing values to csv +INFO:seaice_sensitivity:Wrote data to /executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv +INFO:seaice_sensitivity:Creating Notz-style plot +INFO:esmvaltool.diag_scripts.shared._base:Plotting analysis results to /executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png +INFO:seaice_sensitivity:Creating Roach-style plot +INFO:esmvaltool.diag_scripts.shared._base:Plotting analysis results to /executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png +INFO:esmvaltool.diag_scripts.shared._base:End of diagnostic script run. diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/resource_usage.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/resource_usage.txt new file mode 100644 index 000000000..ad4416237 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/resource_usage.txt @@ -0,0 +1,3 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-08-21 14:13:44.095774 1.0 1.0 0 0.3 2 0.0 0.0 +2025-08-21 14:13:45.101975 2.0 1.9 88 0.4 3 0.0 0.0 diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/settings.yml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/settings.yml new file mode 100644 index 000000000..f3f043df0 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/settings.yml @@ -0,0 +1,35 @@ +observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: null + sea ice sensitivity (Notz-style plot): + mean: null + plausible range: null + standard deviation: null +recipe: recipe.yml +version: 2.12.0 +script: sea_ice_sensitivity_script +run_dir: /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script +plot_dir: /executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script +work_dir: /executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script +output_file_type: png +log_level: info +auxiliary_data_dir: /home/bandela/auxiliary_data +scheduler_address: tcp://127.0.0.1:41245 +input_files: +- /executions/recipe_20250821_141339/preproc/antarctic/siconc/metadata.yml +- /executions/recipe_20250821_141339/preproc/antarctic/tas/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/diagnostic_provenance.yml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/diagnostic_provenance.yml new file mode 100644 index 000000000..db628d869 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/diagnostic_provenance.yml @@ -0,0 +1,42 @@ +? /executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September + Arctic sea ice sensitivity.png +: ancestors: + - /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + authors: + - sellar_alistair + - parsons_naomi + caption: Sensitivity of sea ice area to annual mean global warming.Mean (dashed), + standard deviation (shaded) and plausible values from 1979-2014. + plot_type: other +? /executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September + Arctic sea ice trends.png +: ancestors: + - /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + authors: + - sellar_alistair + - parsons_naomi + caption: Decadal trends of sea ice area and global mean temperature. + plot_type: other +? /executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values.csv +: ancestors: + - /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + - /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + authors: + - sellar_alistair + - parsons_naomi + caption: Annual (not decadal) figures + plot_type: other diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/log.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/log.txt new file mode 100644 index 000000000..b05586242 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/log.txt @@ -0,0 +1,217 @@ +/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:esmvaltool.diag_scripts.shared._base:Starting diagnostic script sea_ice_sensitivity_script with configuration: +auxiliary_data_dir: /home/bandela/auxiliary_data +input_data: + ? /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: arctic + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Sea-Ice Area Percentage (Ocean Grid) + mip: SImon + modeling_realm: + - seaIce + preprocessor: pp_arctic_sept_sea_ice + project: CMIP6 + recipe_dataset_index: 1 + short_name: siconc + standard_name: sea_ice_area_fraction + start_year: 1979 + timerange: 1979/2014 + units: 1e6 km2 + variable_group: siconc + version: v20200817 + ? /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + : activity: CMIP + alias: CanESM5 + dataset: CanESM5 + diagnostic: arctic + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + frequency: mon + grid: gn + institute: CCCma + long_name: Sea-Ice Area Percentage (Ocean Grid) + mip: SImon + modeling_realm: + - seaIce + preprocessor: pp_arctic_sept_sea_ice + project: CMIP6 + recipe_dataset_index: 0 + short_name: siconc + standard_name: sea_ice_area_fraction + start_year: 1979 + timerange: 1979/2014 + units: 1e6 km2 + variable_group: siconc + version: v20190429 + ? /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + : activity: CMIP + alias: HadGEM3-GC31-LL + dataset: HadGEM3-GC31-LL + diagnostic: arctic + end_year: 2014 + ensemble: r1i1p1f3 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + frequency: mon + grid: gn + institute: MOHC + long_name: Sea-Ice Area Percentage (Ocean Grid) + mip: SImon + modeling_realm: + - seaIce + preprocessor: pp_arctic_sept_sea_ice + project: CMIP6 + recipe_dataset_index: 2 + short_name: siconc + standard_name: sea_ice_area_fraction + start_year: 1979 + timerange: 1979/2014 + units: 1e6 km2 + variable_group: siconc + version: v20200330 + ? /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + : activity: CMIP + alias: ACCESS-ESM1-5 + dataset: ACCESS-ESM1-5 + diagnostic: arctic + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + frequency: mon + grid: gn + institute: CSIRO + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: pp_avg_ann_global_temp + project: CMIP6 + recipe_dataset_index: 1 + short_name: tas + standard_name: air_temperature + start_year: 1979 + timerange: 1979/2014 + units: K + variable_group: tas + version: v20191115 + ? /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + : activity: CMIP + alias: CanESM5 + dataset: CanESM5 + diagnostic: arctic + end_year: 2014 + ensemble: r1i1p1f1 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + frequency: mon + grid: gn + institute: CCCma + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: pp_avg_ann_global_temp + project: CMIP6 + recipe_dataset_index: 0 + short_name: tas + standard_name: air_temperature + start_year: 1979 + timerange: 1979/2014 + units: K + variable_group: tas + version: v20190429 + ? /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + : activity: CMIP + alias: HadGEM3-GC31-LL + dataset: HadGEM3-GC31-LL + diagnostic: arctic + end_year: 2014 + ensemble: r1i1p1f3 + exp: historical + filename: /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + frequency: mon + grid: gn + institute: MOHC + long_name: Near-Surface Air Temperature + mip: Amon + modeling_realm: + - atmos + preprocessor: pp_avg_ann_global_temp + project: CMIP6 + recipe_dataset_index: 2 + short_name: tas + standard_name: air_temperature + start_year: 1979 + timerange: 1979/2014 + units: K + variable_group: tas + version: v20190624 +input_files: +- /executions/recipe_20250821_141339/preproc/arctic/siconc/metadata.yml +- /executions/recipe_20250821_141339/preproc/arctic/tas/metadata.yml +log_level: info +observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: 1979-2014 + sea ice sensitivity (Notz-style plot): + mean: -4.01 + plausible range: 1.28 + standard deviation: 0.32 +output_file_type: png +plot_dir: /executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script +recipe: recipe.yml +run_dir: /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script +scheduler_address: tcp://127.0.0.1:41245 +script: sea_ice_sensitivity_script +version: 2.12.0 +work_dir: /executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script + +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script +INFO:esmvaltool.diag_scripts.shared._base:Creating /executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script +INFO:seaice_sensitivity:Getting data from the config +INFO:seaice_sensitivity:Creating titles and observations dictionary +INFO:seaice_sensitivity:Listing datasets in the data +INFO:seaice_sensitivity:Not labelling dataset ACCESS-ESM1-5 in plots +INFO:seaice_sensitivity:Calculating data for Notz-style plot +INFO:seaice_sensitivity:Calculating data for Roach-style plot +INFO:seaice_sensitivity:Not labelling dataset CanESM5 in plots +INFO:seaice_sensitivity:Calculating data for Notz-style plot +INFO:seaice_sensitivity:Calculating data for Roach-style plot +INFO:seaice_sensitivity:Not labelling dataset HadGEM3-GC31-LL in plots +INFO:seaice_sensitivity:Calculating data for Notz-style plot +INFO:seaice_sensitivity:Calculating data for Roach-style plot +INFO:seaice_sensitivity:Writing values to csv +INFO:seaice_sensitivity:Wrote data to /executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values.csv +INFO:seaice_sensitivity:Creating Notz-style plot +INFO:esmvaltool.diag_scripts.shared._base:Plotting analysis results to /executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png +INFO:seaice_sensitivity:Creating Roach-style plot +INFO:esmvaltool.diag_scripts.shared._base:Plotting analysis results to /executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png +INFO:esmvaltool.diag_scripts.shared._base:End of diagnostic script run. diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/resource_usage.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/resource_usage.txt new file mode 100644 index 000000000..0e8b87c28 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/resource_usage.txt @@ -0,0 +1,4 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-08-21 14:13:49.667545 1.0 1.0 0 0.3 2 0.0 0.0 +2025-08-21 14:13:50.673183 2.0 1.9 92 0.4 3 0.0 0.0 +2025-08-21 14:13:51.678639 3.0 2.8 84 0.4 3 0.0 0.0 diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/settings.yml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/settings.yml new file mode 100644 index 000000000..3284f5421 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/settings.yml @@ -0,0 +1,35 @@ +observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: 1979-2014 + sea ice sensitivity (Notz-style plot): + mean: -4.01 + plausible range: 1.28 + standard deviation: 0.32 +recipe: recipe.yml +version: 2.12.0 +script: sea_ice_sensitivity_script +run_dir: /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script +plot_dir: /executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script +work_dir: /executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script +output_file_type: png +log_level: info +auxiliary_data_dir: /home/bandela/auxiliary_data +scheduler_address: tcp://127.0.0.1:41245 +input_files: +- /executions/recipe_20250821_141339/preproc/arctic/siconc/metadata.yml +- /executions/recipe_20250821_141339/preproc/arctic/tas/metadata.yml diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/cmor_log.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/cmor_log.txt new file mode 100644 index 000000000..46d035c79 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/cmor_log.txt @@ -0,0 +1,8 @@ +WARNING [269084] Long name changed from 'Sea-ice Area Percentage (Ocean Grid)' to 'Sea-Ice Area Percentage (Ocean Grid)' +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc) +WARNING [269084] Long name changed from 'Sea-ice Area Percentage (Ocean Grid)' to 'Sea-Ice Area Percentage (Ocean Grid)' +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) +WARNING [269084] Long name changed from 'Sea-ice Area Percentage (Ocean Grid)' to 'Sea-Ice Area Percentage (Ocean Grid)' +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc) +WARNING [269084] Long name changed from 'Sea-ice Area Percentage (Ocean Grid)' to 'Sea-Ice Area Percentage (Ocean Grid)' +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/main_log.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/main_log.txt new file mode 100644 index 000000000..95d95e709 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/main_log.txt @@ -0,0 +1,137 @@ +INFO [269084] +______________________________________________________________________ + _____ ____ __ ____ __ _ _____ _ + | ____/ ___|| \/ \ \ / /_ _| |_ _|__ ___ | | + | _| \___ \| |\/| |\ \ / / _` | | | |/ _ \ / _ \| | + | |___ ___) | | | | \ 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 [269084] Package versions +INFO [269084] ---------------- +INFO [269084] ESMValCore: 2.12.0 +INFO [269084] ESMValTool: 2.13.0.dev120+g8f56863a7 +INFO [269084] ---------------- +INFO [269084] 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 [269084] Writing program log files to: +/executions/recipe_20250821_141339/run/main_log.txt +/executions/recipe_20250821_141339/run/main_log_debug.txt +/executions/recipe_20250821_141339/run/cmor_log.txt +WARNING [269084] /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 [269084] Starting the Earth System Model Evaluation Tool at time: 2025-08-21 14:13:39 UTC +INFO [269084] ---------------------------------------------------------------------- +INFO [269084] RECIPE = /recipe.yml +INFO [269084] RUNDIR = /executions/recipe_20250821_141339/run +INFO [269084] WORKDIR = /executions/recipe_20250821_141339/work +INFO [269084] PREPROCDIR = /executions/recipe_20250821_141339/preproc +INFO [269084] PLOTDIR = /executions/recipe_20250821_141339/plots +INFO [269084] ---------------------------------------------------------------------- +INFO [269084] Running tasks using at most 1 processes +INFO [269084] If your system hangs during execution, it may not have enough memory for keeping this number of tasks in memory. +INFO [269084] If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. +INFO [269084] Creating tasks from recipe +INFO [269084] Creating tasks for diagnostic antarctic +INFO [269084] Creating diagnostic task antarctic/sea_ice_sensitivity_script +INFO [269084] Creating preprocessor task antarctic/siconc +INFO [269084] Creating preprocessor 'pp_antarctic_avg_ann_sea_ice' task for variable 'siconc' +INFO [269084] Found input files for Dataset: siconc, SImon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, v20190429, supplementaries: areacello, Ofx +INFO [269084] Found input files for Dataset: siconc, SImon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20200817, supplementaries: areacello, Ofx, v20191115 +INFO [269084] Found input files for Dataset: siconc, SImon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, v20200330, supplementaries: areacello, Ofx, piControl, r1i1p1f1, v20190709 +INFO [269084] PreprocessingTask antarctic/siconc created. +INFO [269084] Creating preprocessor task antarctic/tas +INFO [269084] Creating preprocessor 'pp_avg_ann_global_temp' task for variable 'tas' +INFO [269084] Found input files for Dataset: tas, Amon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, v20190429, supplementaries: areacella, fx +INFO [269084] Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +INFO [269084] Found input files for Dataset: tas, Amon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, v20190624, supplementaries: areacella, fx, piControl, r1i1p1f1, v20190709 +INFO [269084] PreprocessingTask antarctic/tas created. +INFO [269084] Creating tasks for diagnostic arctic +INFO [269084] Creating diagnostic task arctic/sea_ice_sensitivity_script +INFO [269084] Creating preprocessor task arctic/siconc +INFO [269084] Creating preprocessor 'pp_arctic_sept_sea_ice' task for variable 'siconc' +INFO [269084] Found input files for Dataset: siconc, SImon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, v20190429, supplementaries: areacello, Ofx +INFO [269084] Found input files for Dataset: siconc, SImon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20200817, supplementaries: areacello, Ofx, v20191115 +INFO [269084] Found input files for Dataset: siconc, SImon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, v20200330, supplementaries: areacello, Ofx, piControl, r1i1p1f1, v20190709 +INFO [269084] PreprocessingTask arctic/siconc created. +INFO [269084] Creating preprocessor task arctic/tas +INFO [269084] Creating preprocessor 'pp_avg_ann_global_temp' task for variable 'tas' +INFO [269084] Found input files for Dataset: tas, Amon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, v20190429, supplementaries: areacella, fx +INFO [269084] Found input files for Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20191115, supplementaries: areacella, fx +INFO [269084] Found input files for Dataset: tas, Amon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, v20190624, supplementaries: areacella, fx, piControl, r1i1p1f1, v20190709 +INFO [269084] PreprocessingTask arctic/tas created. +INFO [269084] These tasks will be executed: antarctic/tas, arctic/tas, arctic/sea_ice_sensitivity_script, antarctic/sea_ice_sensitivity_script, antarctic/siconc, arctic/siconc +INFO [269084] Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250821_141339/run/recipe_filled.yml +INFO [269084] Using Dask distributed scheduler (address: tcp://127.0.0.1:41245, dashboard link: http://127.0.0.1:8787/status) +INFO [269084] Running 6 tasks sequentially +INFO [269084] Starting task antarctic/siconc in process [269084] +INFO [269084] Computing and saving data for preprocessing task antarctic/siconc +INFO [269084] Successfully completed task antarctic/siconc (priority 1) in 0:00:02.341233 +INFO [269084] Starting task antarctic/tas in process [269084] +INFO [269084] Computing and saving data for preprocessing task antarctic/tas +INFO [269084] Successfully completed task antarctic/tas (priority 2) in 0:00:00.656795 +INFO [269084] Starting task antarctic/sea_ice_sensitivity_script in process [269084] +INFO [269084] 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/seaice/seaice_sensitivity.py', '/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/settings.yml'] +INFO [269084] Writing output to /executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script +INFO [269084] Writing plots to /executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script +INFO [269084] Writing log to /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/log.txt +INFO [269084] To re-run this diagnostic script, run: +cd /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script; 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/seaice/seaice_sensitivity.py /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/settings.yml +INFO [269084] Maximum memory used (estimate): 0.4 GB +INFO [269084] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +INFO [269084] Successfully completed task antarctic/sea_ice_sensitivity_script (priority 0) in 0:00:03.896607 +INFO [269084] Starting task arctic/siconc in process [269084] +INFO [269084] Computing and saving data for preprocessing task arctic/siconc +INFO [269084] Successfully completed task arctic/siconc (priority 4) in 0:00:01.018848 +INFO [269084] Starting task arctic/tas in process [269084] +INFO [269084] Computing and saving data for preprocessing task arctic/tas +INFO [269084] Successfully completed task arctic/tas (priority 5) in 0:00:00.654938 +INFO [269084] Starting task arctic/sea_ice_sensitivity_script in process [269084] +INFO [269084] 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/seaice/seaice_sensitivity.py', '/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/settings.yml'] +INFO [269084] Writing output to /executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script +INFO [269084] Writing plots to /executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script +INFO [269084] Writing log to /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/log.txt +INFO [269084] To re-run this diagnostic script, run: +cd /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script; 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/seaice/seaice_sensitivity.py /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/settings.yml +INFO [269084] Maximum memory used (estimate): 0.4 GB +INFO [269084] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +INFO [269084] Successfully completed task arctic/sea_ice_sensitivity_script (priority 3) in 0:00:04.107097 +INFO [269084] Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250821_141339/run/recipe_filled.yml +INFO [269084] Wrote recipe output to: +file:///executions/recipe_20250821_141339/index.html +INFO [269084] Ending the Earth System Model Evaluation Tool at time: 2025-08-21 14:13:53 UTC +INFO [269084] Time for running the recipe was: 0:00:13.681912 +INFO [269084] Maximum memory used (estimate): 1.5 GB +INFO [269084] Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +INFO [269084] Removing `preproc` directory containing preprocessed data +INFO [269084] If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration +WARNING [269084] Input data is not (fully) CMOR-compliant, see /executions/recipe_20250821_141339/run/cmor_log.txt for details +INFO [269084] Run was successful diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/main_log_debug.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/main_log_debug.txt new file mode 100644 index 000000000..77f2af886 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/main_log_debug.txt @@ -0,0 +1,8785 @@ +2025-08-21 14:13:39,206 UTC [269084] 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-08-21 14:13:39,206 UTC [269084] INFO esmvalcore._main:577 Package versions +2025-08-21 14:13:39,206 UTC [269084] INFO esmvalcore._main:578 ---------------- +2025-08-21 14:13:39,206 UTC [269084] INFO esmvalcore._main:579 ESMValCore: 2.12.0 +2025-08-21 14:13:39,206 UTC [269084] INFO esmvalcore._main:581 ESMValTool: 2.13.0.dev120+g8f56863a7 +2025-08-21 14:13:39,206 UTC [269084] INFO esmvalcore._main:582 ---------------- +2025-08-21 14:13:39,206 UTC [269084] 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) +/home/bandela/.config/esmvaltool (default user configuration directory) +/config (command line argument) +2025-08-21 14:13:39,206 UTC [269084] INFO esmvalcore._main:587 Writing program log files to: +/executions/recipe_20250821_141339/run/main_log.txt +/executions/recipe_20250821_141339/run/main_log_debug.txt +/executions/recipe_20250821_141339/run/cmor_log.txt +2025-08-21 14:13:39,309 UTC [269084] 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 + warnings.warn("ESMF installation version {}, ESMPy version {}".format( + +2025-08-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:93 Starting the Earth System Model Evaluation Tool at time: 2025-08-21 14:13:39 UTC +2025-08-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:98 ---------------------------------------------------------------------- +2025-08-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:99 RECIPE = /recipe.yml +2025-08-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:100 RUNDIR = /executions/recipe_20250821_141339/run +2025-08-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:101 WORKDIR = /executions/recipe_20250821_141339/work +2025-08-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:102 PREPROCDIR = /executions/recipe_20250821_141339/preproc +2025-08-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:103 PLOTDIR = /executions/recipe_20250821_141339/plots +2025-08-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:104 ---------------------------------------------------------------------- +2025-08-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:107 Running tasks using at most 1 processes +2025-08-21 14:13:39,338 UTC [269084] 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-21 14:13:39,338 UTC [269084] INFO esmvalcore._main:113 If you experience memory problems, try reducing 'max_parallel_tasks' in your configuration. +2025-08-21 14:13:39,338 UTC [269084] 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-21 14:13:39,352 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable siconc in diagnostic antarctic +2025-08-21 14:13:39,352 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/CanESM5/*/*/Ofx/areacello/gn/*/areacello_Ofx_CanESM5_*_*_gn*.nc')] +2025-08-21 14:13:39,353 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: siconc, SImon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacello, Ofx +2025-08-21 14:13:39,353 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/Ofx/areacello/gn/*/areacello_Ofx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-08-21 14:13:39,353 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: siconc, SImon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacello, Ofx +2025-08-21 14:13:39,354 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/HadGEM3-GC31-LL/*/*/Ofx/areacello/gn/*/areacello_Ofx_HadGEM3-GC31-LL_*_*_gn*.nc')] +2025-08-21 14:13:39,354 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: siconc, SImon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, supplementaries: areacello, Ofx, piControl, r1i1p1f1 +2025-08-21 14:13:39,354 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable tas in diagnostic antarctic +2025-08-21 14:13:39,354 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/CanESM5/*/*/fx/areacella/gn/*/areacella_fx_CanESM5_*_*_gn*.nc')] +2025-08-21 14:13:39,354 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacella, fx +2025-08-21 14:13:39,355 UTC [269084] 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-21 14:13:39,355 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacella, fx +2025-08-21 14:13:39,355 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/HadGEM3-GC31-LL/*/*/fx/areacella/gn/*/areacella_fx_HadGEM3-GC31-LL_*_*_gn*.nc')] +2025-08-21 14:13:39,355 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, supplementaries: areacella, fx, piControl, r1i1p1f1 +2025-08-21 14:13:39,356 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable siconc in diagnostic arctic +2025-08-21 14:13:39,356 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/CanESM5/*/*/Ofx/areacello/gn/*/areacello_Ofx_CanESM5_*_*_gn*.nc')] +2025-08-21 14:13:39,356 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: siconc, SImon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacello, Ofx +2025-08-21 14:13:39,356 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/ACCESS-ESM1-5/*/*/Ofx/areacello/gn/*/areacello_Ofx_ACCESS-ESM1-5_*_*_gn*.nc')] +2025-08-21 14:13:39,357 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: siconc, SImon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacello, Ofx +2025-08-21 14:13:39,357 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/HadGEM3-GC31-LL/*/*/Ofx/areacello/gn/*/areacello_Ofx_HadGEM3-GC31-LL_*_*_gn*.nc')] +2025-08-21 14:13:39,357 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: siconc, SImon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, supplementaries: areacello, Ofx, piControl, r1i1p1f1 +2025-08-21 14:13:39,357 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:360 Populating list of datasets for variable tas in diagnostic arctic +2025-08-21 14:13:39,357 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/CanESM5/*/*/fx/areacella/gn/*/areacella_fx_CanESM5_*_*_gn*.nc')] +2025-08-21 14:13:39,357 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacella, fx +2025-08-21 14:13:39,358 UTC [269084] 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-21 14:13:39,358 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, supplementaries: areacella, fx +2025-08-21 14:13:39,358 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/*/*/HadGEM3-GC31-LL/*/*/fx/areacella/gn/*/areacella_fx_HadGEM3-GC31-LL_*_*_gn*.nc')] +2025-08-21 14:13:39,358 UTC [269084] DEBUG esmvalcore._recipe.to_datasets:386 Found Dataset: tas, Amon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, supplementaries: areacella, fx, piControl, r1i1p1f1 +2025-08-21 14:13:39,358 UTC [269084] DEBUG esmvalcore._recipe.recipe:879 Retrieving diagnostics from recipe +2025-08-21 14:13:39,358 UTC [269084] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic antarctic +2025-08-21 14:13:39,358 UTC [269084] DEBUG esmvalcore._recipe.recipe:909 Setting script for diagnostic arctic +2025-08-21 14:13:39,359 UTC [269084] INFO esmvalcore._recipe.recipe:1119 Creating tasks from recipe +2025-08-21 14:13:39,359 UTC [269084] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic antarctic +2025-08-21 14:13:39,359 UTC [269084] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task antarctic/sea_ice_sensitivity_script +2025-08-21 14:13:39,359 UTC [269084] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. +2025-08-21 14:13:39,359 UTC [269084] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task antarctic/siconc +2025-08-21 14:13:39,359 UTC [269084] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'pp_antarctic_avg_ann_sea_ice' task for variable 'siconc' +2025-08-21 14:13:39,361 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/*/siconc_SImon_CanESM5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,361 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/*/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,362 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable siconc of dataset CanESM5: + /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +with files for supplementary variable areacello: + /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:39,362 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: siconc, SImon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, v20190429, supplementaries: areacello, Ofx +2025-08-21 14:13:39,363 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/*/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,364 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/*/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,364 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable siconc of dataset ACCESS-ESM1-5: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc +with files for supplementary variable areacello: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:39,364 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: siconc, SImon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20200817, supplementaries: areacello, Ofx, v20191115 +2025-08-21 14:13:39,365 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/*/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn*.nc')] +2025-08-21 14:13:39,366 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/*/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,366 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable siconc of dataset HadGEM3-GC31-LL: + /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +with files for supplementary variable areacello: + /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:39,366 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: siconc, SImon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, v20200330, supplementaries: areacello, Ofx, piControl, r1i1p1f1, v20190709 +2025-08-21 14:13:39,367 UTC [269084] INFO esmvalcore._recipe.recipe:766 PreprocessingTask antarctic/siconc created. +2025-08-21 14:13:39,367 UTC [269084] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask antarctic/siconc will create the files: +/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc +/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:39,367 UTC [269084] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task antarctic/tas +2025-08-21 14:13:39,367 UTC [269084] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'pp_avg_ann_global_temp' task for variable 'tas' +2025-08-21 14:13:39,368 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/*/tas_Amon_CanESM5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,368 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/*/areacella_fx_CanESM5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,369 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset CanESM5: + /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +with files for supplementary variable areacella: + /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:39,369 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, v20190429, supplementaries: areacella, fx +2025-08-21 14:13:39,370 UTC [269084] 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-08-21 14:13:39,370 UTC [269084] 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-08-21 14:13:39,371 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset ACCESS-ESM1-5: + /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 + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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-08-21 14:13:39,371 UTC [269084] 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-08-21 14:13:39,372 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/*/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn*.nc')] +2025-08-21 14:13:39,372 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/*/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,372 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset HadGEM3-GC31-LL: + /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +with files for supplementary variable areacella: + /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:39,372 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, v20190624, supplementaries: areacella, fx, piControl, r1i1p1f1, v20190709 +2025-08-21 14:13:39,373 UTC [269084] INFO esmvalcore._recipe.recipe:766 PreprocessingTask antarctic/tas created. +2025-08-21 14:13:39,373 UTC [269084] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask antarctic/tas will create the files: +/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc +/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:39,373 UTC [269084] INFO esmvalcore._recipe.recipe:1128 Creating tasks for diagnostic arctic +2025-08-21 14:13:39,373 UTC [269084] INFO esmvalcore._recipe.recipe:1041 Creating diagnostic task arctic/sea_ice_sensitivity_script +2025-08-21 14:13:39,373 UTC [269084] DEBUG esmvalcore._task:397 No local diagnostic script found. Attempting to load the script from the base repository. +2025-08-21 14:13:39,373 UTC [269084] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task arctic/siconc +2025-08-21 14:13:39,373 UTC [269084] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'pp_arctic_sept_sea_ice' task for variable 'siconc' +2025-08-21 14:13:39,374 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/*/siconc_SImon_CanESM5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,374 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/*/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,374 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable siconc of dataset CanESM5: + /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +with files for supplementary variable areacello: + /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:39,374 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: siconc, SImon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, v20190429, supplementaries: areacello, Ofx +2025-08-21 14:13:39,375 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/*/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,375 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/*/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,376 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable siconc of dataset ACCESS-ESM1-5: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc +with files for supplementary variable areacello: + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:39,376 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: siconc, SImon, CMIP6, ACCESS-ESM1-5, CMIP, historical, r1i1p1f1, gn, v20200817, supplementaries: areacello, Ofx, v20191115 +2025-08-21 14:13:39,376 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/*/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn*.nc')] +2025-08-21 14:13:39,377 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/*/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,377 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable siconc of dataset HadGEM3-GC31-LL: + /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +with files for supplementary variable areacello: + /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:39,377 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: siconc, SImon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, v20200330, supplementaries: areacello, Ofx, piControl, r1i1p1f1, v20190709 +2025-08-21 14:13:39,377 UTC [269084] INFO esmvalcore._recipe.recipe:766 PreprocessingTask arctic/siconc created. +2025-08-21 14:13:39,378 UTC [269084] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask arctic/siconc will create the files: +/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc +/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:39,378 UTC [269084] INFO esmvalcore._recipe.recipe:1103 Creating preprocessor task arctic/tas +2025-08-21 14:13:39,378 UTC [269084] INFO esmvalcore._recipe.recipe:739 Creating preprocessor 'pp_avg_ann_global_temp' task for variable 'tas' +2025-08-21 14:13:39,379 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/*/tas_Amon_CanESM5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,379 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/*/areacella_fx_CanESM5_historical_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,379 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset CanESM5: + /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +with files for supplementary variable areacella: + /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:39,379 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, CMIP6, CanESM5, CMIP, historical, r1i1p1f1, gn, v20190429, supplementaries: areacella, fx +2025-08-21 14:13:39,381 UTC [269084] 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-08-21 14:13:39,381 UTC [269084] 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-08-21 14:13:39,381 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset ACCESS-ESM1-5: + /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 + /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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-08-21 14:13:39,381 UTC [269084] 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-08-21 14:13:39,382 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/*/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn*.nc')] +2025-08-21 14:13:39,383 UTC [269084] DEBUG esmvalcore.local:445 Looking for files matching [PosixPath('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/*/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn*.nc')] +2025-08-21 14:13:39,383 UTC [269084] DEBUG esmvalcore._recipe.recipe:313 Using input files for variable tas of dataset HadGEM3-GC31-LL: + /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +with files for supplementary variable areacella: + /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:39,383 UTC [269084] INFO esmvalcore._recipe.recipe:597 Found input files for Dataset: tas, Amon, CMIP6, HadGEM3-GC31-LL, CMIP, historical, r1i1p1f3, gn, v20190624, supplementaries: areacella, fx, piControl, r1i1p1f1, v20190709 +2025-08-21 14:13:39,383 UTC [269084] INFO esmvalcore._recipe.recipe:766 PreprocessingTask arctic/tas created. +2025-08-21 14:13:39,383 UTC [269084] DEBUG esmvalcore._recipe.recipe:767 PreprocessingTask arctic/tas will create the files: +/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc +/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:39,383 UTC [269084] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic antarctic script sea_ice_sensitivity_script +2025-08-21 14:13:39,383 UTC [269084] DEBUG esmvalcore._recipe.recipe:975 Pattern antarctic/siconc matches ['antarctic/siconc'] +2025-08-21 14:13:39,384 UTC [269084] DEBUG esmvalcore._recipe.recipe:975 Pattern antarctic/tas matches ['antarctic/tas'] +2025-08-21 14:13:39,384 UTC [269084] DEBUG esmvalcore._recipe.recipe:962 Linking tasks for diagnostic arctic script sea_ice_sensitivity_script +2025-08-21 14:13:39,384 UTC [269084] DEBUG esmvalcore._recipe.recipe:975 Pattern arctic/siconc matches ['arctic/siconc'] +2025-08-21 14:13:39,384 UTC [269084] DEBUG esmvalcore._recipe.recipe:975 Pattern arctic/tas matches ['arctic/tas'] +2025-08-21 14:13:39,384 UTC [269084] INFO esmvalcore._recipe.recipe:1171 These tasks will be executed: antarctic/tas, arctic/tas, arctic/sea_ice_sensitivity_script, antarctic/sea_ice_sensitivity_script, antarctic/siconc, arctic/siconc +2025-08-21 14:13:39,385 UTC [269084] DEBUG esmvalcore._main:133 Recipe summary: +DiagnosticTask: arctic/sea_ice_sensitivity_script +script: seaice/seaice_sensitivity.py +settings: +{'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'log_level': 'info', + 'observations': {'annual trends (Roach-style plot)': {'first point': {'GMST trend': None, + 'Pearson CC of SIA over GMST': None, + 'SIA trend': None, + 'significance of SIA over GMST': None}, + 'second point': {'GMST trend': None, + 'Pearson CC of SIA over GMST': None, + 'SIA trend': None, + 'significance of SIA over GMST': None}, + 'third point': {'GMST trend': None, + 'Pearson CC of SIA over GMST': None, + 'SIA trend': None, + 'significance of SIA over GMST': None}}, + 'observation period': '1979-2014', + 'sea ice sensitivity (Notz-style plot)': {'mean': -4.01, + 'plausible range': 1.28, + 'standard deviation': 0.32}}, + 'output_file_type': 'png', + 'plot_dir': '/executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script', + 'profile_diagnostic': False, + 'recipe': PosixPath('recipe.yml'), + 'run_dir': '/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script', + 'script': 'sea_ice_sensitivity_script', + 'version': '2.12.0', + 'work_dir': '/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script'} +ancestors: + PreprocessingTask: arctic/siconc + order: ['extract_time', 'extract_month', 'extract_region', 'area_statistics', 'convert_units', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] + settings: {'area_statistics': {'operator': 'sum'}, + 'convert_units': {'units': '1e6 km2'}, + 'extract_month': {'month': 9}, + 'extract_region': {'end_latitude': 90, + 'end_longitude': 360, + 'start_latitude': 0, + 'start_longitude': 0}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc')}} + + PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] + settings: {'area_statistics': {'operator': 'sum'}, + 'convert_units': {'units': '1e6 km2'}, + 'extract_month': {'month': 9}, + 'extract_region': {'end_latitude': 90, + 'end_longitude': 360, + 'start_latitude': 0, + 'start_longitude': 0}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')}} + + PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'area_statistics': {'operator': 'sum'}, + 'convert_units': {'units': '1e6 km2'}, + 'extract_month': {'month': 9}, + 'extract_region': {'end_latitude': 90, + 'end_longitude': 360, + 'start_latitude': 0, + 'start_longitude': 0}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')}} + ancestors: + None + + PreprocessingTask: arctic/tas + order: ['extract_time', 'area_statistics', 'annual_statistics', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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: {'annual_statistics': {'operator': 'mean'}, + 'area_statistics': {'operator': 'mean'}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')}} + + PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] + settings: {'annual_statistics': {'operator': 'mean'}, + 'area_statistics': {'operator': 'mean'}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc')}} + + PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] + settings: {'annual_statistics': {'operator': 'mean'}, + 'area_statistics': {'operator': 'mean'}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')}} + ancestors: + None + + +DiagnosticTask: antarctic/sea_ice_sensitivity_script +script: seaice/seaice_sensitivity.py +settings: +{'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'log_level': 'info', + 'observations': {'annual trends (Roach-style plot)': {'first point': {'GMST trend': None, + 'Pearson CC of SIA over GMST': None, + 'SIA trend': None, + 'significance of SIA over GMST': None}, + 'second point': {'GMST trend': None, + 'Pearson CC of SIA over GMST': None, + 'SIA trend': None, + 'significance of SIA over GMST': None}, + 'third point': {'GMST trend': None, + 'Pearson CC of SIA over GMST': None, + 'SIA trend': None, + 'significance of SIA over GMST': None}}, + 'observation period': None, + 'sea ice sensitivity (Notz-style plot)': {'mean': None, + 'plausible range': None, + 'standard deviation': None}}, + 'output_file_type': 'png', + 'plot_dir': '/executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script', + 'profile_diagnostic': False, + 'recipe': PosixPath('recipe.yml'), + 'run_dir': '/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script', + 'script': 'sea_ice_sensitivity_script', + 'version': '2.12.0', + 'work_dir': '/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script'} +ancestors: + PreprocessingTask: antarctic/siconc + order: ['extract_time', 'extract_region', 'area_statistics', 'annual_statistics', 'convert_units', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] + settings: {'annual_statistics': {'operator': 'mean'}, + 'area_statistics': {'operator': 'sum'}, + 'convert_units': {'units': '1e6 km2'}, + 'extract_region': {'end_latitude': 0, + 'end_longitude': 360, + 'start_latitude': -90, + 'start_longitude': 0}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc')}} + + PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] + settings: {'annual_statistics': {'operator': 'mean'}, + 'area_statistics': {'operator': 'sum'}, + 'convert_units': {'units': '1e6 km2'}, + 'extract_region': {'end_latitude': 0, + 'end_longitude': 360, + 'start_latitude': -90, + 'start_longitude': 0}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')}} + + PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] + settings: {'annual_statistics': {'operator': 'mean'}, + 'area_statistics': {'operator': 'sum'}, + 'convert_units': {'units': '1e6 km2'}, + 'extract_region': {'end_latitude': 0, + 'end_longitude': 360, + 'start_latitude': -90, + 'start_longitude': 0}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')}} + ancestors: + None + + PreprocessingTask: antarctic/tas + order: ['extract_time', 'area_statistics', 'annual_statistics', 'remove_supplementary_variables', 'save'] + PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] + settings: {'annual_statistics': {'operator': 'mean'}, + 'area_statistics': {'operator': 'mean'}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')}} + + PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + input files: [LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] + settings: {'annual_statistics': {'operator': 'mean'}, + 'area_statistics': {'operator': 'mean'}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc')}} + + PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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: {'annual_statistics': {'operator': 'mean'}, + 'area_statistics': {'operator': 'mean'}, + 'extract_time': {'end_day': 31, + 'end_month': 12, + 'end_year': 2014, + 'start_day': 1, + 'start_month': 1, + 'start_year': 1979}, + 'remove_supplementary_variables': {}, + 'save': {'compress': False, + 'compute': False, + 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')}} + ancestors: + None + +2025-08-21 14:13:39,392 UTC [269084] INFO esmvalcore._recipe.recipe:1238 Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250821_141339/run/recipe_filled.yml +2025-08-21 14:13:39,392 UTC [269084] DEBUG esmvalcore.config._dask:170 Using Dask profile 'local_distributed' +2025-08-21 14:13:39,392 UTC [269084] DEBUG esmvalcore.config._dask:174 Using additional Dask settings {} +2025-08-21 14:13:39,393 UTC [269084] DEBUG asyncio:64 Using selector: EpollSelector +2025-08-21 14:13:40,072 UTC [269084] DEBUG esmvalcore.config._dask:192 Using Dask cluster LocalCluster(0180e3be, 'tcp://127.0.0.1:41245', workers=2, threads=4, memory=8.00 GiB) +2025-08-21 14:13:40,073 UTC [269084] DEBUG asyncio:64 Using selector: EpollSelector +2025-08-21 14:13:40,077 UTC [269084] INFO esmvalcore.config._dask:205 Using Dask distributed scheduler (address: tcp://127.0.0.1:41245, dashboard link: http://127.0.0.1:8787/status) +2025-08-21 14:13:40,077 UTC [269084] INFO esmvalcore._task:844 Running 6 tasks sequentially +2025-08-21 14:13:40,077 UTC [269084] INFO esmvalcore._task:289 Starting task antarctic/siconc in process [269084] +2025-08-21 14:13:40,096 UTC [269084] DEBUG esmvalcore.preprocessor:716 Running block ['extract_time', 'extract_region', 'area_statistics', 'annual_statistics', 'convert_units'] +2025-08-21 14:13:40,096 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:40,097 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:40,097 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:40,097 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/siconc_SImon_CMIP6_CanESM5_CMIP_historical_r1i1p1f1_gn_v20190429_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_antarctic_avg_ann_sea_ice', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'antarctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:40,098 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:40,098 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:40,098 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:40,113 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:40,113 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:40,115 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_antarctic_avg_ann_sea_ice', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'antarctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:40,116 UTC [269084] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Sea-ice Area Percentage (Ocean Grid)' to 'Sea-Ice Area Percentage (Ocean Grid)' +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:40,116 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:40,116 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:40,609 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:40,610 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:40,610 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:40,611 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:41,137 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:41,138 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:41,142 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:41,143 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_antarctic_avg_ann_sea_ice', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'antarctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:41,143 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:41,143 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:41,144 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:41,144 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacello_Ofx_CMIP6_CanESM5_CMIP_historical_r1i1p1f1_gn_v20190429_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190429' +2025-08-21 14:13:41,144 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:41,144 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:41,144 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:41,152 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:41,152 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:41,153 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190429' +2025-08-21 14:13:41,153 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc) +2025-08-21 14:13:41,153 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc) +2025-08-21 14:13:41,183 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:41,184 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:41,184 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:41,185 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:41,220 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:41,221 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190429' +2025-08-21 14:13:41,222 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:41,223 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:41,223 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:41,224 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:41,225 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacello as cell measure in cube of siconc. +2025-08-21 14:13:41,225 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:41,225 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:41,228 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_region +2025-08-21 14:13:41,229 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_region' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_latitude = 0, +end_longitude = 360, +start_latitude = -90, +start_longitude = 0 +2025-08-21 14:13:41,272 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:41,272 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'sum' +2025-08-21 14:13:41,284 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-08-21 14:13:41,285 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:41,324 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-08-21 14:13:41,325 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = '1e6 km2' +2025-08-21 14:13:41,325 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:41,326 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc') +2025-08-21 14:13:41,326 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +sea_ice_area_fraction / (1e6 km2) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + year x + Scalar coordinates: + area_type sea_ice + cell index along first dimension 17, bound=(0, 35) + cell index along second dimension 7, bound=(0, 14) + latitude +bound + longitude +bound + Cell methods: + 0 area: mean where sea + 1 time: mean + 2 latitude: longitude: sum + 3 year: mean + Attributes: + CCCma_model_hash '3dedf95315d603326fde4f5340dc0519d80d10c0' + CCCma_parent_runid 'rc3-pictrl' + CCCma_pycmor_hash '33c30511acc319a98240633965a04ca99c26427e' + CCCma_runid 'rc3.1-his01' + Conventions 'CF-1.7 CMIP-6.2' + YMDH_branch_time_in_child '1850:01:01:00' + YMDH_branch_time_in_parent '5201:01:01:00' + activity_id 'CMIP' + branch_method 'Spin-up documentation' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.float64(1223115.0) + cmor_version '3.4.0' + contact 'ec.cccma.info-info.ccmac.ec@canada.ca' + data_specs_version '01.00.29' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacello' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i ...' + grid 'ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees ...' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Canadian Centre for Climate Modelling and Analysis, Environment and Climate ...' + institution_id 'CCCma' + license 'CMIP6 model data produced by The Government of Canada (Canadian Centre ...' + mip_era 'CMIP6' + nominal_resolution '100 km' + original_name 'soicecov' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'CanESM5' + 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 'seaIce' + references 'Geophysical Model Development Special issue on CanESM5 (https://www.ge ...' + source 'CanESM5 (2019): \naerosol: interactive\natmos: CanAM5 (T63L49 native atmosphere, ...' + source_id 'CanESM5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'SImon' + table_info 'Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49' + title 'CanESM5 output prepared for CMIP6' + variable_id 'siconc' + variant_label 'r1i1p1f1' + version 'v20190429' +with lazy data to /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:41,362 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:41,363 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:41,363 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:41,363 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/siconc_SImon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20200817_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_antarctic_avg_ann_sea_ice', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'antarctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200817' +2025-08-21 14:13:41,364 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:41,364 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:41,364 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:41,377 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:41,377 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:41,379 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_antarctic_avg_ann_sea_ice', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'antarctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200817' +2025-08-21 14:13:41,379 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:41,379 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:41,404 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:41,406 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:41,406 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:41,406 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:41,448 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:41,448 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:41,451 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:41,452 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_antarctic_avg_ann_sea_ice', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'antarctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200817' +2025-08-21 14:13:41,452 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:41,453 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:41,453 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:41,453 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacello_Ofx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20191115' +2025-08-21 14:13:41,453 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:41,454 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:41,454 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:41,461 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:41,461 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:41,462 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20191115' +2025-08-21 14:13:41,463 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-08-21 14:13:41,463 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-08-21 14:13:41,489 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:41,490 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:41,490 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:41,490 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:41,524 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:41,525 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20191115' +2025-08-21 14:13:41,525 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:41,526 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:41,526 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:41,527 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:41,527 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacello as cell measure in cube of siconc. +2025-08-21 14:13:41,527 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:41,528 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:41,531 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_region +2025-08-21 14:13:41,531 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_region' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_latitude = 0, +end_longitude = 360, +start_latitude = -90, +start_longitude = 0 +2025-08-21 14:13:41,562 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:41,563 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'sum' +2025-08-21 14:13:41,574 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-08-21 14:13:41,575 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:41,614 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-08-21 14:13:41,614 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = '1e6 km2' +2025-08-21 14:13:41,615 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:41,615 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc') +2025-08-21 14:13:41,616 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +sea_ice_area_fraction / (1e6 km2) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + year x + Scalar coordinates: + area_type sea_ice + cell index along first dimension 17, bound=(0, 35) + cell index along second dimension 6, bound=(0, 13) + latitude +bound + longitude +bound + Cell methods: + 0 area: mean where sea + 1 time: mean + 2 latitude: longitude: sum + 3 year: mean + 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 'areacello' + 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: siconc (['aice'])" + original_units '1' + 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 'seaIce' + 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 'SImon' + table_info 'Creation Date:(30 April 2019) MD5:5bd755e94c2173cb3050a0f3480f60c4' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'siconc' + variant_label 'r1i1p1f1' + version 'v20200817' +with lazy data to /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:41,630 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc +2025-08-21 14:13:41,630 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:41,630 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:41,631 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/siconc_SImon_CMIP6_HadGEM3-GC31-LL_CMIP_historical_r1i1p1f3_gn_v20200330_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_antarctic_avg_ann_sea_ice', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'antarctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200330' +2025-08-21 14:13:41,631 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:41,631 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:41,631 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +2025-08-21 14:13:41,645 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +2025-08-21 14:13:41,645 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:41,646 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_antarctic_avg_ann_sea_ice', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'antarctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200330' +2025-08-21 14:13:41,646 UTC [269084] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Sea-ice Area Percentage (Ocean Grid)' to 'Sea-Ice Area Percentage (Ocean Grid)' +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) +2025-08-21 14:13:41,646 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) +2025-08-21 14:13:41,646 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) +2025-08-21 14:13:41,674 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Shifted longitude to [0, 360] +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) +2025-08-21 14:13:41,675 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:41,675 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:41,676 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:41,676 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:41,723 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:41,723 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:41,726 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:41,727 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_antarctic_avg_ann_sea_ice', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'antarctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200330' +2025-08-21 14:13:41,727 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:41,728 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:41,728 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:41,728 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacello_Ofx_CMIP6_HadGEM3-GC31-LL_CMIP_piControl_r1i1p1f1_gn_v20190709_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190709' +2025-08-21 14:13:41,728 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:41,728 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:41,728 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:41,736 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:41,736 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:41,737 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190709' +2025-08-21 14:13:41,738 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc) +2025-08-21 14:13:41,738 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc) +2025-08-21 14:13:41,765 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Shifted longitude to [0, 360] +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc) +2025-08-21 14:13:41,765 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:41,766 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:41,766 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:41,766 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:41,810 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:41,812 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190709' +2025-08-21 14:13:41,812 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:41,812 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:41,813 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:41,814 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:41,814 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacello as cell measure in cube of siconc. +2025-08-21 14:13:41,814 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:41,814 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:41,817 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_region +2025-08-21 14:13:41,818 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_region' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +end_latitude = 0, +end_longitude = 360, +start_latitude = -90, +start_longitude = 0 +2025-08-21 14:13:41,855 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:41,856 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'sum' +2025-08-21 14:13:41,867 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-08-21 14:13:41,868 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:41,906 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-08-21 14:13:41,907 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +units = '1e6 km2' +2025-08-21 14:13:41,907 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:41,908 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc') +2025-08-21 14:13:41,908 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +sea_ice_area_fraction / (1e6 km2) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + year x + Scalar coordinates: + area_type sea_ice + cell index along first dimension 17, bound=(0, 35) + cell index along second dimension 9, bound=(0, 18) + latitude +bound + longitude +bound + Cell methods: + 0 area: mean where sea + 1 time: mean + 2 latitude: longitude: sum + 3 year: mean + 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.float64(0.0) + cmor_version '3.4.0' + cv_version '6.2.37.5' + data_specs_version '01.00.29' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacello' + forcing_index np.int32(3) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.n ...' + grid 'Native eORCA1 tripolar primarily 1 deg with meridional refinement down ...' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK' + institution_id 'MOHC' + license 'CMIP6 model data produced by the Met Office Hadley Centre is licensed under ...' + mip_era 'CMIP6' + mo_runid 'u-bg466' + nominal_resolution '100 km' + original_name 'mo: (variable_name: aice)' + original_units '1' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'HadGEM3-GC31-LL' + 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 'seaIce' + source 'HadGEM3-GC31-LL (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 ...' + source_id 'HadGEM3-GC31-LL' + source_type 'AOGCM AER' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'SImon' + table_info 'Creation Date:(13 December 2018) MD5:f0588f7f55b5732b17302f8d9d0d7b8c' + title 'HadGEM3-GC31-LL output prepared for CMIP6' + variable_id 'siconc' + variable_name 'siconc' + variant_label 'r1i1p1f3' +with lazy data to /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc +2025-08-21 14:13:41,923 UTC [269084] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task antarctic/siconc +2025-08-21 14:13:41,931 UTC [269084] DEBUG asyncio:64 Using selector: EpollSelector +2025-08-21 14:13:42,419 UTC [269084] INFO esmvalcore._task:295 Successfully completed task antarctic/siconc (priority 1) in 0:00:02.341233 +2025-08-21 14:13:42,419 UTC [269084] INFO esmvalcore._task:289 Starting task antarctic/tas in process [269084] +2025-08-21 14:13:42,441 UTC [269084] DEBUG esmvalcore.preprocessor:716 Running block ['extract_time', 'area_statistics', 'annual_statistics'] +2025-08-21 14:13:42,441 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:42,441 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:42,441 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:42,441 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/tas_Amon_CMIP6_CanESM5_CMIP_historical_r1i1p1f1_gn_v20190429_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:42,441 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:42,441 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:42,441 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:42,449 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:42,449 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:42,450 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:42,451 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:42,452 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:42,452 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:42,452 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:42,453 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:42,454 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:42,455 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:42,456 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:42,456 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:42,457 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:42,457 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:42,457 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacella_fx_CMIP6_CanESM5_CMIP_historical_r1i1p1f1_gn_v20190429_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +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 = 'v20190429' +2025-08-21 14:13:42,457 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:42,457 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:42,457 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:42,462 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:42,462 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:42,462 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +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 = 'v20190429' +2025-08-21 14:13:42,462 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:42,463 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:42,463 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:42,463 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-08-21 14:13:42,463 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:42,464 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +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 = 'v20190429' +2025-08-21 14:13:42,464 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:42,464 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-08-21 14:13:42,464 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:42,465 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:42,465 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. +2025-08-21 14:13:42,465 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:42,466 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:42,468 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:42,468 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:42,475 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-08-21 14:13:42,475 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:42,516 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:42,516 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc') +2025-08-21 14:13:42,517 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + year x + Scalar coordinates: + height 2.0 m + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude 175.0 degrees_east, bound=(-5.0, 355.0) degrees_east + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 year: mean + Attributes: + CCCma_model_hash '3dedf95315d603326fde4f5340dc0519d80d10c0' + CCCma_parent_runid 'rc3-pictrl' + CCCma_pycmor_hash '33c30511acc319a98240633965a04ca99c26427e' + CCCma_runid 'rc3.1-his01' + Conventions 'CF-1.7 CMIP-6.2' + YMDH_branch_time_in_child '1850:01:01:00' + YMDH_branch_time_in_parent '5201:01:01:00' + activity_id 'CMIP' + branch_method 'Spin-up documentation' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.float64(1223115.0) + cmor_version '3.4.0' + contact 'ec.cccma.info-info.ccmac.ec@canada.ca' + data_specs_version '01.00.29' + 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.CCCma.CanESM5.historical.none.r1i ...' + grid 'T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; ...' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Canadian Centre for Climate Modelling and Analysis, Environment and Climate ...' + institution_id 'CCCma' + license 'CMIP6 model data produced by The Government of Canada (Canadian Centre ...' + mip_era 'CMIP6' + nominal_resolution '500 km' + original_name 'ST' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'CanESM5' + 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' + references 'Geophysical Model Development Special issue on CanESM5 (https://www.ge ...' + regrid_method 'bilinear' + source 'CanESM5 (2019): \naerosol: interactive\natmos: CanAM5 (T63L49 native atmosphere, ...' + source_id 'CanESM5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49' + title 'CanESM5 output prepared for CMIP6' + variable_id 'tas' + variant_label 'r1i1p1f1' + version 'v20190429' +with lazy data to /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:42,528 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:42,528 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:42,528 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:42,528 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-08-21 14:13:42,528 UTC [269084] 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_197901-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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-08-21 14:13:42,529 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:42,529 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:42,529 UTC [269084] 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-08-21 14:13:42,548 UTC [269084] 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-08-21 14:13:42,548 UTC [269084] 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_197901-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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:42,548 UTC [269084] 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_197901-201412.nc +2025-08-21 14:13:42,556 UTC [269084] 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_197901-201412.nc +2025-08-21 14:13:42,556 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:42,558 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-08-21 14:13:42,559 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:42,561 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:42,562 UTC [269084] DEBUG esmvalcore.preprocessor._io:271 Using air_temperature / (K) (time: 1980; 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: + 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' + regrid_method 'bilinear' + 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' shortened to 1979-01-16 12:00:00 due to overlap +2025-08-21 14:13:42,564 UTC [269084] DEBUG esmvalcore.preprocessor._io:279 Using air_temperature / (K) (time: 432; 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: + 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' + regrid_method 'bilinear' + 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' +2025-08-21 14:13:42,568 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:42,569 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:42,572 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:42,573 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:42,578 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:42,579 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-08-21 14:13:42,579 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:42,579 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:42,579 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:42,580 UTC [269084] 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_20250821_141339/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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +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-08-21 14:13:42,580 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:42,580 UTC [269084] 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-08-21 14:13:42,580 UTC [269084] 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-08-21 14:13:42,585 UTC [269084] 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-08-21 14:13:42,585 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:42,585 UTC [269084] 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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +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-08-21 14:13:42,586 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:42,586 UTC [269084] 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-08-21 14:13:42,586 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:42,586 UTC [269084] 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-08-21 14:13:42,587 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:42,587 UTC [269084] 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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +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-08-21 14:13:42,587 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:42,588 UTC [269084] 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-08-21 14:13:42,588 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:42,588 UTC [269084] 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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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-08-21 14:13:42,588 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. +2025-08-21 14:13:42,588 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:42,589 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' 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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:42,591 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:42,592 UTC [269084] 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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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-08-21 14:13:42,598 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-08-21 14:13:42,598 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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-08-21 14:13:42,637 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:42,637 UTC [269084] 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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc') +2025-08-21 14:13:42,638 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + year x + Scalar coordinates: + height 2.0 m + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude 175.0 degrees_east, bound=(-5.0, 355.0) degrees_east + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 year: mean + 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' + regrid_method 'bilinear' + 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_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:42,649 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc +2025-08-21 14:13:42,649 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:42,649 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:42,650 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/tas_Amon_CMIP6_HadGEM3-GC31-LL_CMIP_historical_r1i1p1f3_gn_v20190624_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190624' +2025-08-21 14:13:42,650 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:42,650 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:42,650 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +2025-08-21 14:13:42,658 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +2025-08-21 14:13:42,658 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:42,659 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190624' +2025-08-21 14:13:42,659 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:42,660 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:42,660 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:42,661 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:42,662 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:42,662 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:42,664 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:42,665 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'antarctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190624' +2025-08-21 14:13:42,665 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:42,665 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:42,666 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:42,666 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacella_fx_CMIP6_HadGEM3-GC31-LL_CMIP_piControl_r1i1p1f1_gn_v20190709_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +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 = 'v20190709' +2025-08-21 14:13:42,666 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:42,666 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:42,666 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:42,671 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:42,671 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:42,671 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +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 = 'v20190709' +2025-08-21 14:13:42,672 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:42,672 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:42,672 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:42,672 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-08-21 14:13:42,672 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:42,673 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +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 = 'v20190709' +2025-08-21 14:13:42,673 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:42,673 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-08-21 14:13:42,674 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:42,674 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:42,674 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. +2025-08-21 14:13:42,674 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:42,675 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:42,677 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:42,678 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:42,684 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-08-21 14:13:42,685 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:42,722 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:42,723 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc') +2025-08-21 14:13:42,723 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + year x + Scalar coordinates: + height 1.5 m + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude 175.0 degrees_east, bound=(-5.0, 355.0) degrees_east + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 year: mean + 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.float64(0.0) + cmor_version '3.4.0' + cv_version '6.2.20.1' + data_specs_version '01.00.29' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(3) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.n ...' + grid 'Native N96 grid; 192 x 144 longitude/latitude' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK' + institution_id 'MOHC' + license 'CMIP6 model data produced by the Met Office Hadley Centre is licensed under ...' + mip_era 'CMIP6' + mo_runid 'u-bg466' + nominal_resolution '250 km' + original_name 'mo: (stash: m01s03i236, lbproc: 128)' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'HadGEM3-GC31-LL' + 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' + regrid_method 'bilinear' + source 'HadGEM3-GC31-LL (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 ...' + source_id 'HadGEM3-GC31-LL' + source_type 'AOGCM AER' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121' + title 'HadGEM3-GC31-LL output prepared for CMIP6' + variable_id 'tas' + variant_label 'r1i1p1f3' +with lazy data to /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc +2025-08-21 14:13:42,734 UTC [269084] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task antarctic/tas +2025-08-21 14:13:42,747 UTC [269084] DEBUG asyncio:64 Using selector: EpollSelector +2025-08-21 14:13:43,076 UTC [269084] INFO esmvalcore._task:295 Successfully completed task antarctic/tas (priority 2) in 0:00:00.656795 +2025-08-21 14:13:43,076 UTC [269084] INFO esmvalcore._task:289 Starting task antarctic/sea_ice_sensitivity_script in process [269084] +2025-08-21 14:13:43,078 UTC [269084] 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/seaice/seaice_sensitivity.py', '/executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/settings.yml'] +2025-08-21 14:13:43,078 UTC [269084] DEBUG esmvalcore._task:565 in environment +{'MPLBACKEND': 'Agg'} +2025-08-21 14:13:43,078 UTC [269084] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script +2025-08-21 14:13:43,078 UTC [269084] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script +2025-08-21 14:13:43,078 UTC [269084] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script +2025-08-21 14:13:43,078 UTC [269084] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/log.txt +2025-08-21 14:13:43,078 UTC [269084] INFO esmvalcore._task:580 To re-run this diagnostic script, run: +cd /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script; 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/seaice/seaice_sensitivity.py /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/settings.yml +2025-08-21 14:13:46,102 UTC [269084] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.4 GB +2025-08-21 14:13:46,103 UTC [269084] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-08-21 14:13:46,104 UTC [269084] DEBUG esmvalcore._task:657 Script seaice/seaice_sensitivity.py completed successfully +2025-08-21 14:13:46,104 UTC [269084] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250821_141339/run/antarctic/sea_ice_sensitivity_script/diagnostic_provenance.yml +2025-08-21 14:13:46,129 UTC [269084] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-08-21 14:13:46,190 UTC [269084] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.CMIP.CCCma.CanESM5.historical HTTP/11" 302 274 +2025-08-21 14:13:46,208 UTC [269084] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CCCma.CanESM5.historical HTTP/11" 302 276 +2025-08-21 14:13:46,209 UTC [269084] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-08-21 14:13:46,305 UTC [269084] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.CCCma.CanESM5.historical HTTP/11" 200 15571 +2025-08-21 14:13:46,316 UTC [269084] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-08-21 14:13:46,375 UTC [269084] 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-08-21 14:13:46,392 UTC [269084] 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-08-21 14:13:46,393 UTC [269084] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-08-21 14:13:46,479 UTC [269084] 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-08-21 14:13:46,488 UTC [269084] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-08-21 14:13:46,585 UTC [269084] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.historical HTTP/11" 302 281 +2025-08-21 14:13:46,607 UTC [269084] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.historical HTTP/11" 302 283 +2025-08-21 14:13:46,607 UTC [269084] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-08-21 14:13:46,678 UTC [269084] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.historical HTTP/11" 200 26134 +2025-08-21 14:13:46,695 UTC [269084] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): cera-www.dkrz.de:443 +2025-08-21 14:13:46,775 UTC [269084] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /WDCC/ui/cerasearch/cerarest/exportcmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl HTTP/11" 302 280 +2025-08-21 14:13:46,799 UTC [269084] DEBUG urllib3.connectionpool:546 https://cera-www.dkrz.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl HTTP/11" 302 282 +2025-08-21 14:13:46,800 UTC [269084] DEBUG urllib3.connectionpool:1051 Starting new HTTPS connection (1): www.wdc-climate.de:443 +2025-08-21 14:13:46,884 UTC [269084] DEBUG urllib3.connectionpool:546 https://www.wdc-climate.de:443 "GET /ui/cerarest/exportcmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl HTTP/11" 200 22831 +2025-08-21 14:13:46,916 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-08-21 14:13:46,916 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-08-21 14:13:46,916 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-08-21 14:13:46,916 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 19682 +2025-08-21 14:13:46,937 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-08-21 14:13:46,937 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-08-21 14:13:46,937 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-08-21 14:13:46,937 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 43473 +2025-08-21 14:13:46,972 UTC [269084] DEBUG esmvalcore._task:770 Collecting provenance of task antarctic/sea_ice_sensitivity_script took 0.9 seconds +2025-08-21 14:13:46,973 UTC [269084] INFO esmvalcore._task:295 Successfully completed task antarctic/sea_ice_sensitivity_script (priority 0) in 0:00:03.896607 +2025-08-21 14:13:46,973 UTC [269084] INFO esmvalcore._task:289 Starting task arctic/siconc in process [269084] +2025-08-21 14:13:46,990 UTC [269084] DEBUG esmvalcore.preprocessor:716 Running block ['extract_time', 'extract_month', 'extract_region', 'area_statistics', 'convert_units'] +2025-08-21 14:13:46,990 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:46,990 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:46,990 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:46,991 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/siconc_SImon_CMIP6_CanESM5_CMIP_historical_r1i1p1f1_gn_v20190429_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_arctic_sept_sea_ice', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'arctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:46,991 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:46,991 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:46,991 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:47,005 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:47,005 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:47,006 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_arctic_sept_sea_ice', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'arctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:47,006 UTC [269084] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Sea-ice Area Percentage (Ocean Grid)' to 'Sea-Ice Area Percentage (Ocean Grid)' +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:47,006 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:47,006 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:47,033 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:47,034 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:47,034 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:47,034 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:47,076 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:47,077 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:47,080 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:47,081 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_arctic_sept_sea_ice', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'arctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:47,081 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:47,082 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:47,083 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:47,083 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacello_Ofx_CMIP6_CanESM5_CMIP_historical_r1i1p1f1_gn_v20190429_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190429' +2025-08-21 14:13:47,083 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:47,083 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:47,083 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:47,092 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:47,092 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:47,093 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190429' +2025-08-21 14:13:47,093 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc) +2025-08-21 14:13:47,093 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc) +2025-08-21 14:13:47,121 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:47,123 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:47,123 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:47,124 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:47,169 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:47,171 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190429' +2025-08-21 14:13:47,171 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:47,172 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:47,172 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:47,174 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:47,174 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacello as cell measure in cube of siconc. +2025-08-21 14:13:47,174 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:47,175 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:47,178 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_month +2025-08-21 14:13:47,179 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_month' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +month = 9 +2025-08-21 14:13:47,182 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_region +2025-08-21 14:13:47,182 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_region' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_latitude = 90, +end_longitude = 360, +start_latitude = 0, +start_longitude = 0 +2025-08-21 14:13:47,237 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:47,238 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'sum' +2025-08-21 14:13:47,252 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-08-21 14:13:47,253 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = '1e6 km2' +2025-08-21 14:13:47,254 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:47,255 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/SImon/siconc/gn/v20190429/siconc_SImon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Ofx/areacello/gn/v20190429/areacello_Ofx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc') +2025-08-21 14:13:47,255 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +sea_ice_area_fraction / (1e6 km2) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + month_number x + Scalar coordinates: + area_type sea_ice + cell index along first dimension 17, bound=(0, 35) + cell index along second dimension 22, bound=(15, 29) + latitude +bound + longitude +bound + Cell methods: + 0 area: mean where sea + 1 time: mean + 2 latitude: longitude: sum + Attributes: + CCCma_model_hash '3dedf95315d603326fde4f5340dc0519d80d10c0' + CCCma_parent_runid 'rc3-pictrl' + CCCma_pycmor_hash '33c30511acc319a98240633965a04ca99c26427e' + CCCma_runid 'rc3.1-his01' + Conventions 'CF-1.7 CMIP-6.2' + YMDH_branch_time_in_child '1850:01:01:00' + YMDH_branch_time_in_parent '5201:01:01:00' + activity_id 'CMIP' + branch_method 'Spin-up documentation' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.float64(1223115.0) + cmor_version '3.4.0' + contact 'ec.cccma.info-info.ccmac.ec@canada.ca' + data_specs_version '01.00.29' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacello' + forcing_index np.int32(1) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i ...' + grid 'ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees ...' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Canadian Centre for Climate Modelling and Analysis, Environment and Climate ...' + institution_id 'CCCma' + license 'CMIP6 model data produced by The Government of Canada (Canadian Centre ...' + mip_era 'CMIP6' + nominal_resolution '100 km' + original_name 'soicecov' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'CanESM5' + 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 'seaIce' + references 'Geophysical Model Development Special issue on CanESM5 (https://www.ge ...' + source 'CanESM5 (2019): \naerosol: interactive\natmos: CanAM5 (T63L49 native atmosphere, ...' + source_id 'CanESM5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'SImon' + table_info 'Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49' + title 'CanESM5 output prepared for CMIP6' + variable_id 'siconc' + variant_label 'r1i1p1f1' + version 'v20190429' +with lazy data to /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:47,267 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:47,267 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:47,267 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:47,267 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/siconc_SImon_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20200817_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_arctic_sept_sea_ice', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'arctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200817' +2025-08-21 14:13:47,268 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:47,268 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:47,268 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:47,281 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:47,281 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:47,283 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_arctic_sept_sea_ice', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'arctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200817' +2025-08-21 14:13:47,283 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:47,283 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc) +2025-08-21 14:13:47,310 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:47,311 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:47,311 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:47,312 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:47,350 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:47,350 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:47,353 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:47,354 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_arctic_sept_sea_ice', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'arctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200817' +2025-08-21 14:13:47,354 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:47,355 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:47,355 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:47,356 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacello_Ofx_CMIP6_ACCESS-ESM1-5_CMIP_historical_r1i1p1f1_gn_v20191115_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20191115' +2025-08-21 14:13:47,356 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:47,356 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:47,356 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:47,365 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:47,365 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:47,366 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20191115' +2025-08-21 14:13:47,366 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-08-21 14:13:47,366 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc) +2025-08-21 14:13:47,394 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:47,396 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:47,396 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:47,397 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:47,436 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:47,438 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20191115' +2025-08-21 14:13:47,438 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:47,439 UTC [269084] 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/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:47,439 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:47,441 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:47,441 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacello as cell measure in cube of siconc. +2025-08-21 14:13:47,441 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:47,442 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:47,445 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_month +2025-08-21 14:13:47,446 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_month' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +month = 9 +2025-08-21 14:13:47,449 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_region +2025-08-21 14:13:47,450 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_region' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_latitude = 90, +end_longitude = 360, +start_latitude = 0, +start_longitude = 0 +2025-08-21 14:13:47,488 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:47,488 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'sum' +2025-08-21 14:13:47,500 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-08-21 14:13:47,501 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +units = '1e6 km2' +2025-08-21 14:13:47,502 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:47,502 UTC [269084] 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/SImon/siconc/gn/v20200817/siconc_SImon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Ofx/areacello/gn/v20191115/areacello_Ofx_ACCESS-ESM1-5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc') +2025-08-21 14:13:47,502 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +sea_ice_area_fraction / (1e6 km2) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + month_number x + Scalar coordinates: + area_type sea_ice + cell index along first dimension 17, bound=(0, 35) + cell index along second dimension 21, bound=(14, 29) + latitude +bound + longitude +bound + Cell methods: + 0 area: mean where sea + 1 time: mean + 2 latitude: longitude: sum + 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 'areacello' + 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: siconc (['aice'])" + original_units '1' + 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 'seaIce' + 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 'SImon' + table_info 'Creation Date:(30 April 2019) MD5:5bd755e94c2173cb3050a0f3480f60c4' + title 'ACCESS-ESM1-5 output prepared for CMIP6' + variable_id 'siconc' + variant_label 'r1i1p1f1' + version 'v20200817' +with lazy data to /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc +2025-08-21 14:13:47,514 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc +2025-08-21 14:13:47,514 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:47,514 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:47,515 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/siconc_SImon_CMIP6_HadGEM3-GC31-LL_CMIP_historical_r1i1p1f3_gn_v20200330_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_arctic_sept_sea_ice', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'arctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200330' +2025-08-21 14:13:47,515 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:47,515 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:47,515 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +2025-08-21 14:13:47,529 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +2025-08-21 14:13:47,529 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:47,531 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_arctic_sept_sea_ice', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'arctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200330' +2025-08-21 14:13:47,531 UTC [269084] WARNING esmvalcore.cmor._fixes.fix.genericfix:417 Long name changed from 'Sea-ice Area Percentage (Ocean Grid)' to 'Sea-Ice Area Percentage (Ocean Grid)' +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) +2025-08-21 14:13:47,531 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) +2025-08-21 14:13:47,531 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) +2025-08-21 14:13:47,559 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Shifted longitude to [0, 360] +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc) +2025-08-21 14:13:47,559 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:47,560 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:47,560 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:47,561 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:47,605 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:47,605 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:47,608 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:47,609 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'SImon', +preprocessor = 'pp_arctic_sept_sea_ice', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'siconc', +variable_group = 'siconc', +diagnostic = 'arctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'siconc', +standard_name = 'sea_ice_area_fraction', +long_name = 'Sea-Ice Area Percentage (Ocean Grid)', +units = '%', +modeling_realm = ['seaIce'], +frequency = 'mon', +version = 'v20200330' +2025-08-21 14:13:47,610 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:47,610 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'SImon', +frequency = 'mon', +short_name = 'siconc' +2025-08-21 14:13:47,610 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:47,611 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacello_Ofx_CMIP6_HadGEM3-GC31-LL_CMIP_piControl_r1i1p1f1_gn_v20190709_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190709' +2025-08-21 14:13:47,611 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:47,611 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:47,611 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:47,619 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:47,619 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:47,620 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190709' +2025-08-21 14:13:47,620 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional longitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'longitude' to 'lon' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc) +2025-08-21 14:13:47,620 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Multidimensional latitude coordinate is not set in CMOR standard, ESMValTool will change the original value of 'latitude' to 'lat' to match the one-dimensional case +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc) +2025-08-21 14:13:47,650 UTC [269084] DEBUG esmvalcore.cmor._fixes.fix.genericfix:412 Shifted longitude to [0, 360] +(for file /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc) +2025-08-21 14:13:47,650 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:47,651 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:47,651 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:47,652 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:47,692 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:47,694 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Ofx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +short_name = 'areacello', +original_short_name = 'areacello', +standard_name = 'cell_area', +long_name = 'Grid-Cell Area for Ocean Variables', +units = 'm2', +modeling_realm = ['ocean'], +frequency = 'fx', +version = 'v20190709' +2025-08-21 14:13:47,695 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:47,695 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Ofx', +frequency = 'fx', +short_name = 'areacello' +2025-08-21 14:13:47,695 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:47,697 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:47,697 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacello as cell measure in cube of siconc. +2025-08-21 14:13:47,697 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:47,697 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:47,700 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_month +2025-08-21 14:13:47,701 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_month' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +month = 9 +2025-08-21 14:13:47,704 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_region +2025-08-21 14:13:47,704 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_region' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +end_latitude = 90, +end_longitude = 360, +start_latitude = 0, +start_longitude = 0 +2025-08-21 14:13:47,742 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:47,742 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'sum' +2025-08-21 14:13:47,754 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step convert_units +2025-08-21 14:13:47,755 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'convert_units' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +units = '1e6 km2' +2025-08-21 14:13:47,756 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:47,756 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/SImon/siconc/gn/v20200330/siconc_SImon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/Ofx/areacello/gn/v20190709/areacello_Ofx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc') +2025-08-21 14:13:47,757 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +sea_ice_area_fraction / (1e6 km2) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + month_number x + Scalar coordinates: + area_type sea_ice + cell index along first dimension 17, bound=(0, 35) + cell index along second dimension 25, bound=(19, 32) + latitude +bound + longitude +bound + Cell methods: + 0 area: mean where sea + 1 time: mean + 2 latitude: longitude: sum + 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.float64(0.0) + cmor_version '3.4.0' + cv_version '6.2.37.5' + data_specs_version '01.00.29' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacello' + forcing_index np.int32(3) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.n ...' + grid 'Native eORCA1 tripolar primarily 1 deg with meridional refinement down ...' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK' + institution_id 'MOHC' + license 'CMIP6 model data produced by the Met Office Hadley Centre is licensed under ...' + mip_era 'CMIP6' + mo_runid 'u-bg466' + nominal_resolution '100 km' + original_name 'mo: (variable_name: aice)' + original_units '1' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'HadGEM3-GC31-LL' + 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 'seaIce' + source 'HadGEM3-GC31-LL (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 ...' + source_id 'HadGEM3-GC31-LL' + source_type 'AOGCM AER' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'SImon' + table_info 'Creation Date:(13 December 2018) MD5:f0588f7f55b5732b17302f8d9d0d7b8c' + title 'HadGEM3-GC31-LL output prepared for CMIP6' + variable_id 'siconc' + variable_name 'siconc' + variant_label 'r1i1p1f3' +with lazy data to /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc +2025-08-21 14:13:47,773 UTC [269084] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task arctic/siconc +2025-08-21 14:13:47,776 UTC [269084] DEBUG asyncio:64 Using selector: EpollSelector +2025-08-21 14:13:47,992 UTC [269084] INFO esmvalcore._task:295 Successfully completed task arctic/siconc (priority 4) in 0:00:01.018848 +2025-08-21 14:13:47,992 UTC [269084] INFO esmvalcore._task:289 Starting task arctic/tas in process [269084] +2025-08-21 14:13:48,011 UTC [269084] DEBUG esmvalcore.preprocessor:716 Running block ['extract_time', 'area_statistics', 'annual_statistics'] +2025-08-21 14:13:48,011 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:48,011 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:48,011 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:48,012 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/tas_Amon_CMIP6_CanESM5_CMIP_historical_r1i1p1f1_gn_v20190429_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:48,012 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:48,012 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:48,012 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:48,021 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc +2025-08-21 14:13:48,021 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:48,022 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:48,022 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:48,023 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:48,023 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:48,024 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:48,025 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:48,025 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:48,027 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:48,028 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 0, +alias = 'CanESM5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190429' +2025-08-21 14:13:48,028 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:48,029 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:48,029 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:48,029 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacella_fx_CMIP6_CanESM5_CMIP_historical_r1i1p1f1_gn_v20190429_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +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 = 'v20190429' +2025-08-21 14:13:48,029 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:48,029 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:48,029 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:48,034 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc +2025-08-21 14:13:48,034 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:48,035 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +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 = 'v20190429' +2025-08-21 14:13:48,035 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:48,035 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:48,035 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:48,035 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-08-21 14:13:48,036 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:48,036 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'CanESM5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CCCma', +project = 'CMIP6', +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 = 'v20190429' +2025-08-21 14:13:48,036 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:48,037 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-08-21 14:13:48,037 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:48,037 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:48,038 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. +2025-08-21 14:13:48,038 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:48,038 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:48,041 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:48,041 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:48,048 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-08-21 14:13:48,049 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:48,089 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:48,090 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/Amon/tas/gn/v20190429/tas_Amon_CanESM5_historical_r1i1p1f1_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/CCCma/CanESM5/historical/r1i1p1f1/fx/areacella/gn/v20190429/areacella_fx_CanESM5_historical_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc') +2025-08-21 14:13:48,091 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + year x + Scalar coordinates: + height 2.0 m + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude 175.0 degrees_east, bound=(-5.0, 355.0) degrees_east + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 year: mean + Attributes: + CCCma_model_hash '3dedf95315d603326fde4f5340dc0519d80d10c0' + CCCma_parent_runid 'rc3-pictrl' + CCCma_pycmor_hash '33c30511acc319a98240633965a04ca99c26427e' + CCCma_runid 'rc3.1-his01' + Conventions 'CF-1.7 CMIP-6.2' + YMDH_branch_time_in_child '1850:01:01:00' + YMDH_branch_time_in_parent '5201:01:01:00' + activity_id 'CMIP' + branch_method 'Spin-up documentation' + branch_time_in_child np.float64(0.0) + branch_time_in_parent np.float64(1223115.0) + cmor_version '3.4.0' + contact 'ec.cccma.info-info.ccmac.ec@canada.ca' + data_specs_version '01.00.29' + 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.CCCma.CanESM5.historical.none.r1i ...' + grid 'T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; ...' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Canadian Centre for Climate Modelling and Analysis, Environment and Climate ...' + institution_id 'CCCma' + license 'CMIP6 model data produced by The Government of Canada (Canadian Centre ...' + mip_era 'CMIP6' + nominal_resolution '500 km' + original_name 'ST' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'CanESM5' + 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' + references 'Geophysical Model Development Special issue on CanESM5 (https://www.ge ...' + regrid_method 'bilinear' + source 'CanESM5 (2019): \naerosol: interactive\natmos: CanAM5 (T63L49 native atmosphere, ...' + source_id 'CanESM5' + source_type 'AOGCM' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49' + title 'CanESM5 output prepared for CMIP6' + variable_id 'tas' + variant_label 'r1i1p1f1' + version 'v20190429' +with lazy data to /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:48,103 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:48,103 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:48,103 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:48,104 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-08-21 14:13:48,104 UTC [269084] 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_197901-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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-08-21 14:13:48,104 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:48,104 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:48,104 UTC [269084] 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-08-21 14:13:48,122 UTC [269084] 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-08-21 14:13:48,122 UTC [269084] 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_197901-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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:48,122 UTC [269084] 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_197901-201412.nc +2025-08-21 14:13:48,131 UTC [269084] 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_197901-201412.nc +2025-08-21 14:13:48,131 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:48,133 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-08-21 14:13:48,134 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:48,135 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:48,136 UTC [269084] DEBUG esmvalcore.preprocessor._io:271 Using air_temperature / (K) (time: 1980; 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: + 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' + regrid_method 'bilinear' + 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' shortened to 1979-01-16 12:00:00 due to overlap +2025-08-21 14:13:48,139 UTC [269084] DEBUG esmvalcore.preprocessor._io:279 Using air_temperature / (K) (time: 432; 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: + 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' + regrid_method 'bilinear' + 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' +2025-08-21 14:13:48,141 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:48,142 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:48,146 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:48,146 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:48,151 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:48,152 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 1, +alias = 'ACCESS-ESM1-5', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20191115' +2025-08-21 14:13:48,152 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:48,152 UTC [269084] 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'), + LocalFile('/climate_data/CMIP6/CMIP/CSIRO/ACCESS-ESM1-5/historical/r1i1p1f1/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:48,153 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:48,153 UTC [269084] 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_20250821_141339/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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +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-08-21 14:13:48,153 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:48,153 UTC [269084] 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-08-21 14:13:48,153 UTC [269084] 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-08-21 14:13:48,158 UTC [269084] 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-08-21 14:13:48,158 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:48,159 UTC [269084] 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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +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-08-21 14:13:48,159 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:48,159 UTC [269084] 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-08-21 14:13:48,159 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:48,160 UTC [269084] 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-08-21 14:13:48,160 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:48,161 UTC [269084] 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/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'ACCESS-ESM1-5', +ensemble = 'r1i1p1f1', +exp = 'historical', +grid = 'gn', +institute = 'CSIRO', +project = 'CMIP6', +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-08-21 14:13:48,161 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:48,161 UTC [269084] 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-08-21 14:13:48,161 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:48,162 UTC [269084] 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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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-08-21 14:13:48,162 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. +2025-08-21 14:13:48,162 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:48,162 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' 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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:48,165 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:48,165 UTC [269084] 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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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-08-21 14:13:48,172 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-08-21 14:13:48,172 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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-08-21 14:13:48,213 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:48,214 UTC [269084] 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/Amon/tas/gn/v20191115/tas_Amon_ACCESS-ESM1-5_historical_r1i1p1f1_gn_197901-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_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc') +2025-08-21 14:13:48,214 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + year x + Scalar coordinates: + height 2.0 m + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude 175.0 degrees_east, bound=(-5.0, 355.0) degrees_east + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 year: mean + 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' + regrid_method 'bilinear' + 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_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc +2025-08-21 14:13:48,226 UTC [269084] DEBUG esmvalcore.preprocessor:724 Applying single-model steps to PreprocessorFile: /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc +2025-08-21 14:13:48,226 UTC [269084] DEBUG esmvalcore.esgf._download:560 All required data is available locally, not downloading anything. +2025-08-21 14:13:48,226 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:48,226 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/tas_Amon_CMIP6_HadGEM3-GC31-LL_CMIP_historical_r1i1p1f3_gn_v20190624_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190624' +2025-08-21 14:13:48,226 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:48,226 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:48,226 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +2025-08-21 14:13:48,235 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc +2025-08-21 14:13:48,235 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:48,236 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190624' +2025-08-21 14:13:48,236 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:48,237 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:48,237 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:48,238 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:48,239 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step clip_timerange +2025-08-21 14:13:48,239 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'clip_timerange' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +timerange = '1979/2014' +2025-08-21 14:13:48,241 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:48,242 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'Amon', +preprocessor = 'pp_avg_ann_global_temp', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f3', +exp = 'historical', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +timerange = '1979/2014', +short_name = 'tas', +variable_group = 'tas', +diagnostic = 'arctic', +recipe_dataset_index = 2, +alias = 'HadGEM3-GC31-LL', +original_short_name = 'tas', +standard_name = 'air_temperature', +long_name = 'Near-Surface Air Temperature', +units = 'K', +modeling_realm = ['atmos'], +frequency = 'mon', +version = 'v20190624' +2025-08-21 14:13:48,242 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:48,243 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'Amon', +frequency = 'mon', +short_name = 'tas' +2025-08-21 14:13:48,243 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_file +2025-08-21 14:13:48,244 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_file' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +output_dir = PosixPath('/executions/recipe_20250821_141339/preproc/fixed_files/areacella_fx_CMIP6_HadGEM3-GC31-LL_CMIP_piControl_r1i1p1f1_gn_v20190709_'), +add_unique_suffix = True, +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +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 = 'v20190709' +2025-08-21 14:13:48,244 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step load +2025-08-21 14:13:48,244 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'load' on the data +LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc') +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +ignore_warnings = None +2025-08-21 14:13:48,244 UTC [269084] DEBUG esmvalcore.preprocessor._io:103 Loading: +/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:48,248 UTC [269084] DEBUG esmvalcore.preprocessor._io:151 Done with loading /climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc +2025-08-21 14:13:48,249 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_metadata +2025-08-21 14:13:48,249 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_metadata' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +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 = 'v20190709' +2025-08-21 14:13:48,249 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step concatenate +2025-08-21 14:13:48,250 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'concatenate' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = +2025-08-21 14:13:48,250 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_metadata +2025-08-21 14:13:48,250 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_metadata' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-08-21 14:13:48,250 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step fix_data +2025-08-21 14:13:48,251 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'fix_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +session = Session({'auxiliary_data_dir': PosixPath('/home/bandela/auxiliary_data'), + 'check_level': , + 'compress_netcdf': False, + 'config_developer_file': PosixPath('/home/bandela/src/esmvalgroup/esmvaltool/config-developer.yml'), + 'dask': {'profiles': {'debug': {'scheduler': 'synchronous'}, + 'local_distributed': {'cluster': {'memory_limit': '4GiB', + 'n_workers': 2, + 'threads_per_worker': 2, + 'type': 'distributed.LocalCluster'}}, + 'local_threaded': {'scheduler': 'threads'}, + 'threaded': {'num_workers': 4}}, + 'use': 'local_distributed'}, + 'diagnostics': None, + 'download_dir': PosixPath('/home/bandela/climate_data'), + 'drs': {'CMIP3': 'ESGF', + 'CMIP5': 'ESGF', + 'CMIP6': 'ESGF', + 'CORDEX': 'ESGF', + 'OBS': 'default', + 'OBS6': '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': 1, + 'max_years': None, + 'output_dir': PosixPath('/executions'), + 'output_file_type': 'png', + 'profile_diagnostic': False, + 'remove_preproc_dir': True, + 'resume_from': [], + 'rootpath': {'CMIP6': [PosixPath('/climate_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')], + 'obs4MIPs': [PosixPath('/climate_data'), + PosixPath('/home/bandela/.cache/climate_ref/ESMValTool')]}, + 'run_diagnostic': True, + 'save_intermediary_cubes': False, + 'search_esgf': 'never', + 'skip_nonexistent': False, + 'write_ncl_interface': False}), +mip = 'fx', +activity = 'CMIP', +dataset = 'HadGEM3-GC31-LL', +ensemble = 'r1i1p1f1', +exp = 'piControl', +grid = 'gn', +institute = 'MOHC', +project = 'CMIP6', +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 = 'v20190709' +2025-08-21 14:13:48,251 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step cmor_check_data +2025-08-21 14:13:48,251 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'cmor_check_data' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +check_level = , +cmor_table = 'CMIP6', +mip = 'fx', +frequency = 'fx', +short_name = 'areacella' +2025-08-21 14:13:48,252 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step add_supplementary_variables +2025-08-21 14:13:48,252 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'add_supplementary_variables' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +supplementary_cubes = [] +2025-08-21 14:13:48,252 UTC [269084] DEBUG esmvalcore.preprocessor._supplementary_vars:97 Added areacella as cell measure in cube of tas. +2025-08-21 14:13:48,253 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step extract_time +2025-08-21 14:13:48,253 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'extract_time' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +end_day = 31, +end_month = 12, +end_year = 2014, +start_day = 1, +start_month = 1, +start_year = 1979 +2025-08-21 14:13:48,255 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step area_statistics +2025-08-21 14:13:48,256 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'area_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:48,263 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step annual_statistics +2025-08-21 14:13:48,263 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'annual_statistics' on the data + +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +operator = 'mean' +2025-08-21 14:13:48,304 UTC [269084] DEBUG esmvalcore.preprocessor:411 Running preprocessor step save +2025-08-21 14:13:48,305 UTC [269084] DEBUG esmvalcore.preprocessor:358 Running preprocessor function 'save' on the data +[] +loaded from original input file(s) +[LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/historical/r1i1p1f3/Amon/tas/gn/v20190624/tas_Amon_HadGEM3-GC31-LL_historical_r1i1p1f3_gn_197901-201412.nc'), + LocalFile('/climate_data/CMIP6/CMIP/MOHC/HadGEM3-GC31-LL/piControl/r1i1p1f1/fx/areacella/gn/v20190709/areacella_fx_HadGEM3-GC31-LL_piControl_r1i1p1f1_gn.nc')] +with function argument(s) +compress = False, +compute = False, +filename = PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc') +2025-08-21 14:13:48,305 UTC [269084] DEBUG esmvalcore.preprocessor._io:497 Saving cube: +air_temperature / (K) (time: 36) + Dimension coordinates: + time x + Auxiliary coordinates: + year x + Scalar coordinates: + height 1.5 m + latitude 0.0 degrees_north, bound=(-90.0, 90.0) degrees_north + longitude 175.0 degrees_east, bound=(-5.0, 355.0) degrees_east + Cell methods: + 0 area: time: mean + 1 latitude: longitude: mean + 2 year: mean + 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.float64(0.0) + cmor_version '3.4.0' + cv_version '6.2.20.1' + data_specs_version '01.00.29' + experiment 'all-forcing simulation of the recent past' + experiment_id 'historical' + external_variables 'areacella' + forcing_index np.int32(3) + frequency 'mon' + further_info_url 'https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.n ...' + grid 'Native N96 grid; 192 x 144 longitude/latitude' + grid_label 'gn' + initialization_index np.int32(1) + institution 'Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK' + institution_id 'MOHC' + license 'CMIP6 model data produced by the Met Office Hadley Centre is licensed under ...' + mip_era 'CMIP6' + mo_runid 'u-bg466' + nominal_resolution '250 km' + original_name 'mo: (stash: m01s03i236, lbproc: 128)' + parent_activity_id 'CMIP' + parent_experiment_id 'piControl' + parent_mip_era 'CMIP6' + parent_source_id 'HadGEM3-GC31-LL' + 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' + regrid_method 'bilinear' + source 'HadGEM3-GC31-LL (2016): \naerosol: UKCA-GLOMAP-mode\natmos: MetUM-HadGEM3-GA7.1 ...' + source_id 'HadGEM3-GC31-LL' + source_type 'AOGCM AER' + sub_experiment 'none' + sub_experiment_id 'none' + table_id 'Amon' + table_info 'Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121' + title 'HadGEM3-GC31-LL output prepared for CMIP6' + variable_id 'tas' + variant_label 'r1i1p1f3' +with lazy data to /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc +2025-08-21 14:13:48,316 UTC [269084] INFO esmvalcore.preprocessor:747 Computing and saving data for preprocessing task arctic/tas +2025-08-21 14:13:48,327 UTC [269084] DEBUG asyncio:64 Using selector: EpollSelector +2025-08-21 14:13:48,647 UTC [269084] INFO esmvalcore._task:295 Successfully completed task arctic/tas (priority 5) in 0:00:00.654938 +2025-08-21 14:13:48,647 UTC [269084] INFO esmvalcore._task:289 Starting task arctic/sea_ice_sensitivity_script in process [269084] +2025-08-21 14:13:48,648 UTC [269084] 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/seaice/seaice_sensitivity.py', '/executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/settings.yml'] +2025-08-21 14:13:48,648 UTC [269084] DEBUG esmvalcore._task:565 in environment +{'MPLBACKEND': 'Agg'} +2025-08-21 14:13:48,648 UTC [269084] DEBUG esmvalcore._task:567 in current working directory: /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script +2025-08-21 14:13:48,648 UTC [269084] INFO esmvalcore._task:568 Writing output to /executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script +2025-08-21 14:13:48,648 UTC [269084] INFO esmvalcore._task:569 Writing plots to /executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script +2025-08-21 14:13:48,648 UTC [269084] INFO esmvalcore._task:570 Writing log to /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/log.txt +2025-08-21 14:13:48,648 UTC [269084] INFO esmvalcore._task:580 To re-run this diagnostic script, run: +cd /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script; 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/seaice/seaice_sensitivity.py /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/settings.yml +2025-08-21 14:13:52,678 UTC [269084] INFO esmvalcore._task:141 Maximum memory used (estimate): 0.4 GB +2025-08-21 14:13:52,678 UTC [269084] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-08-21 14:13:52,679 UTC [269084] DEBUG esmvalcore._task:657 Script seaice/seaice_sensitivity.py completed successfully +2025-08-21 14:13:52,679 UTC [269084] DEBUG esmvalcore._task:682 Collecting provenance from /executions/recipe_20250821_141339/run/arctic/sea_ice_sensitivity_script/diagnostic_provenance.yml +2025-08-21 14:13:52,700 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-08-21 14:13:52,700 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-08-21 14:13:52,700 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-08-21 14:13:52,700 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 23546 +2025-08-21 14:13:52,717 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'IHDR' 16 13 +2025-08-21 14:13:52,717 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'tEXt' 41 58 +2025-08-21 14:13:52,717 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'pHYs' 111 9 +2025-08-21 14:13:52,717 UTC [269084] DEBUG PIL.PngImagePlugin:198 STREAM b'IDAT' 132 45888 +2025-08-21 14:13:52,754 UTC [269084] DEBUG esmvalcore._task:770 Collecting provenance of task arctic/sea_ice_sensitivity_script took 0.1 seconds +2025-08-21 14:13:52,754 UTC [269084] INFO esmvalcore._task:295 Successfully completed task arctic/sea_ice_sensitivity_script (priority 3) in 0:00:04.107097 +2025-08-21 14:13:52,981 UTC [269084] INFO esmvalcore._recipe.recipe:1201 Wrote recipe with version numbers and wildcards to: +file:///executions/recipe_20250821_141339/run/recipe_filled.yml +2025-08-21 14:13:53,019 UTC [269084] INFO esmvalcore.experimental.recipe_output:280 Wrote recipe output to: +file:///executions/recipe_20250821_141339/index.html +2025-08-21 14:13:53,019 UTC [269084] INFO esmvalcore._main:138 Ending the Earth System Model Evaluation Tool at time: 2025-08-21 14:13:53 UTC +2025-08-21 14:13:53,019 UTC [269084] INFO esmvalcore._main:142 Time for running the recipe was: 0:00:13.681912 +2025-08-21 14:13:53,379 UTC [269084] INFO esmvalcore._task:141 Maximum memory used (estimate): 1.5 GB +2025-08-21 14:13:53,379 UTC [269084] INFO esmvalcore._task:144 Sampled every second. It may be inaccurate if short but high spikes in memory consumption occur. +2025-08-21 14:13:53,379 UTC [269084] INFO esmvalcore._main:518 Removing `preproc` directory containing preprocessed data +2025-08-21 14:13:53,379 UTC [269084] INFO esmvalcore._main:521 If this data is further needed, then set `remove_preproc_dir` to `false` in your configuration +2025-08-21 14:13:53,380 UTC [269084] WARNING esmvalcore._main:491 Input data is not (fully) CMOR-compliant, see /executions/recipe_20250821_141339/run/cmor_log.txt for details +2025-08-21 14:13:53,380 UTC [269084] INFO esmvalcore._main:496 Run was successful diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/recipe.yml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/recipe.yml new file mode 100644 index 000000000..42104b940 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/recipe.yml @@ -0,0 +1,180 @@ +datasets: +- activity: CMIP + dataset: CanESM5 + ensemble: r1i1p1f1 + exp: historical + grid: gn + institute: CCCma + project: CMIP6 + timerange: 1979/2014 +- activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + exp: historical + grid: gn + institute: CSIRO + project: CMIP6 + timerange: 1979/2014 +- activity: CMIP + dataset: HadGEM3-GC31-LL + ensemble: r1i1p1f3 + exp: historical + grid: gn + institute: MOHC + project: CMIP6 + timerange: 1979/2014 +defaults: + ensemble: r1i1p1f1 + exp: historical + grid: gn + project: CMIP6 +diagnostics: + antarctic: + description: Plots annual mean sea ice sensitivity below 0 latitude in millions + of square kilometres + scripts: + sea_ice_sensitivity_script: + observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: null + sea ice sensitivity (Notz-style plot): + mean: null + plausible range: null + standard deviation: null + script: seaice/seaice_sensitivity.py + variables: + siconc: + mip: SImon + preprocessor: pp_antarctic_avg_ann_sea_ice + tas: + mip: Amon + preprocessor: pp_avg_ann_global_temp + arctic: + description: Plots September sea ice sensitivity above 0 latitude in millions + of square kilometres + scripts: + sea_ice_sensitivity_script: + observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: 1979-2014 + sea ice sensitivity (Notz-style plot): + mean: -4.01 + plausible range: 1.28 + standard deviation: 0.32 + script: seaice/seaice_sensitivity.py + variables: + siconc: + mip: SImon + preprocessor: pp_arctic_sept_sea_ice + tas: + mip: Amon + preprocessor: pp_avg_ann_global_temp +documentation: + authors: + - parsons_naomi + - sellar_alistair + - blockley_ed + 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. + + ' + maintainer: + - parsons_naomi + title: Sea ice sensitivity +preprocessors: + annual_mean: + annual_statistics: &id001 + operator: mean + extract_sept: + extract_month: &id005 + month: 9 + extract_test_period: + extract_time: &id002 + end_day: 31 + end_month: 12 + end_year: 2014 + start_day: 1 + start_month: 1 + start_year: 1979 + global_mean: + area_statistics: &id007 + operator: mean + nh_total_area: + area_statistics: &id003 + operator: sum + convert_units: &id004 + units: 1e6 km2 + extract_region: &id006 + end_latitude: 90 + end_longitude: 360 + start_latitude: 0 + start_longitude: 0 + pp_antarctic_avg_ann_sea_ice: + annual_statistics: *id001 + area_statistics: &id008 + operator: sum + convert_units: &id009 + units: 1e6 km2 + extract_region: &id010 + end_latitude: 0 + end_longitude: 360 + start_latitude: -90 + start_longitude: 0 + extract_time: *id002 + pp_arctic_sept_sea_ice: + area_statistics: *id003 + convert_units: *id004 + extract_month: *id005 + extract_region: *id006 + extract_time: *id002 + pp_avg_ann_global_temp: + annual_statistics: *id001 + area_statistics: *id007 + extract_time: *id002 + sh_total_area: + area_statistics: *id008 + convert_units: *id009 + extract_region: *id010 diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/recipe_filled.yml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/recipe_filled.yml new file mode 100644 index 000000000..502c8032a --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/recipe_filled.yml @@ -0,0 +1,311 @@ +defaults: + ensemble: r1i1p1f1 + exp: historical + grid: gn + project: CMIP6 +diagnostics: + antarctic: + description: Plots annual mean sea ice sensitivity below 0 latitude in millions + of square kilometres + scripts: + sea_ice_sensitivity_script: + observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: null + sea ice sensitivity (Notz-style plot): + mean: null + plausible range: null + standard deviation: null + script: seaice/seaice_sensitivity.py + variables: + siconc: + mip: SImon + preprocessor: pp_antarctic_avg_ann_sea_ice + activity: CMIP + exp: historical + grid: gn + project: CMIP6 + timerange: 1979/2014 + additional_datasets: + - dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + version: v20200817 + supplementary_variables: + - mip: Ofx + short_name: areacello + version: v20191115 + - dataset: CanESM5 + ensemble: r1i1p1f1 + institute: CCCma + version: v20190429 + supplementary_variables: + - mip: Ofx + short_name: areacello + - dataset: HadGEM3-GC31-LL + ensemble: r1i1p1f3 + institute: MOHC + version: v20200330 + supplementary_variables: + - mip: Ofx + ensemble: r1i1p1f1 + exp: piControl + short_name: areacello + version: v20190709 + tas: + mip: Amon + preprocessor: pp_avg_ann_global_temp + activity: CMIP + exp: historical + grid: gn + project: CMIP6 + timerange: 1979/2014 + additional_datasets: + - dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + version: v20191115 + supplementary_variables: + - mip: fx + short_name: areacella + - dataset: CanESM5 + ensemble: r1i1p1f1 + institute: CCCma + version: v20190429 + supplementary_variables: + - mip: fx + short_name: areacella + - dataset: HadGEM3-GC31-LL + ensemble: r1i1p1f3 + institute: MOHC + version: v20190624 + supplementary_variables: + - mip: fx + ensemble: r1i1p1f1 + exp: piControl + short_name: areacella + version: v20190709 + arctic: + description: Plots September sea ice sensitivity above 0 latitude in millions + of square kilometres + scripts: + sea_ice_sensitivity_script: + observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: 1979-2014 + sea ice sensitivity (Notz-style plot): + mean: -4.01 + plausible range: 1.28 + standard deviation: 0.32 + script: seaice/seaice_sensitivity.py + variables: + siconc: + mip: SImon + preprocessor: pp_arctic_sept_sea_ice + activity: CMIP + exp: historical + grid: gn + project: CMIP6 + timerange: 1979/2014 + additional_datasets: + - dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + version: v20200817 + supplementary_variables: + - mip: Ofx + short_name: areacello + version: v20191115 + - dataset: CanESM5 + ensemble: r1i1p1f1 + institute: CCCma + version: v20190429 + supplementary_variables: + - mip: Ofx + short_name: areacello + - dataset: HadGEM3-GC31-LL + ensemble: r1i1p1f3 + institute: MOHC + version: v20200330 + supplementary_variables: + - mip: Ofx + ensemble: r1i1p1f1 + exp: piControl + short_name: areacello + version: v20190709 + tas: + mip: Amon + preprocessor: pp_avg_ann_global_temp + activity: CMIP + exp: historical + grid: gn + project: CMIP6 + timerange: 1979/2014 + additional_datasets: + - dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + institute: CSIRO + version: v20191115 + supplementary_variables: + - mip: fx + short_name: areacella + - dataset: CanESM5 + ensemble: r1i1p1f1 + institute: CCCma + version: v20190429 + supplementary_variables: + - mip: fx + short_name: areacella + - dataset: HadGEM3-GC31-LL + ensemble: r1i1p1f3 + institute: MOHC + version: v20190624 + supplementary_variables: + - mip: fx + ensemble: r1i1p1f1 + exp: piControl + short_name: areacella + version: v20190709 +documentation: + authors: + - parsons_naomi + - sellar_alistair + - blockley_ed + 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.' + maintainer: + - parsons_naomi + title: Sea ice sensitivity +preprocessors: + annual_mean: + annual_statistics: + operator: mean + extract_sept: + extract_month: + month: 9 + extract_test_period: + extract_time: + end_day: 31 + end_month: 12 + end_year: 2014 + start_day: 1 + start_month: 1 + start_year: 1979 + global_mean: + area_statistics: + operator: mean + nh_total_area: + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + extract_region: + end_latitude: 90 + end_longitude: 360 + start_latitude: 0 + start_longitude: 0 + pp_antarctic_avg_ann_sea_ice: + annual_statistics: + operator: mean + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + extract_region: + end_latitude: 0 + end_longitude: 360 + start_latitude: -90 + start_longitude: 0 + extract_time: + end_day: 31 + end_month: 12 + end_year: 2014 + start_day: 1 + start_month: 1 + start_year: 1979 + pp_arctic_sept_sea_ice: + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + extract_month: + month: 9 + extract_region: + end_latitude: 90 + end_longitude: 360 + start_latitude: 0 + start_longitude: 0 + extract_time: + end_day: 31 + end_month: 12 + end_year: 2014 + start_day: 1 + start_month: 1 + start_year: 1979 + pp_avg_ann_global_temp: + annual_statistics: + operator: mean + area_statistics: + operator: mean + extract_time: + end_day: 31 + end_month: 12 + end_year: 2014 + start_day: 1 + start_month: 1 + start_year: 1979 + sh_total_area: + area_statistics: + operator: sum + convert_units: + units: 1e6 km2 + extract_region: + end_latitude: 0 + end_longitude: 360 + start_latitude: -90 + start_longitude: 0 + default: {} +datasets: [] diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/resource_usage.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/resource_usage.txt new file mode 100644 index 000000000..439262b28 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/run/resource_usage.txt @@ -0,0 +1,14 @@ +Date and time (UTC) Real time (s) CPU time (s) CPU (%) Memory (GB) Memory (%) Disk read (GB) Disk write (GB) +2025-08-21 14:13:40.217351 1.0 4.8 0 0.7 5 0.0 0.0 +2025-08-21 14:13:41.239226 2.0 5.9 13 1.0 7 0.0 0.0 +2025-08-21 14:13:42.313745 3.1 7.4 67 1.0 7 0.0 0.0 +2025-08-21 14:13:43.319323 4.1 8.7 51 1.1 8 0.0 0.0 +2025-08-21 14:13:44.324876 5.1 9.9 6 1.4 10 0.0 0.0 +2025-08-21 14:13:45.330727 6.1 11.0 11 1.5 10 0.0 0.0 +2025-08-21 14:13:46.337020 7.1 11.2 8 1.1 7 0.0 0.0 +2025-08-21 14:13:47.343532 8.1 11.9 34 1.1 7 0.0 0.0 +2025-08-21 14:13:48.351123 9.1 13.2 73 1.1 7 0.0 0.0 +2025-08-21 14:13:49.356886 10.1 14.4 12 1.3 9 0.0 0.0 +2025-08-21 14:13:50.365516 11.2 15.6 5 1.5 10 0.0 0.0 +2025-08-21 14:13:51.373502 12.2 16.6 10 1.5 10 0.0 0.0 +2025-08-21 14:13:52.379189 13.2 16.9 6 1.1 7 0.0 0.0 diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv new file mode 100644 index 000000000..8fedeb544 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv @@ -0,0 +1,4 @@ +,label,direct_sensitivity_(notz-style),annual_siconc_trend,annual_tas_trend,direct_r_val,direct_p_val +ACCESS-ESM1-5,unlabelled,-0.009308938976566736,-0.0002971439814176324,0.0325482853284367,-0.747116470283511,1.6582163952524357e-07 +CanESM5,unlabelled,-0.0012622883913430065,7.261761385609422e-06,0.03255096789032336,-0.0859323266341288,0.6182576601557226 +HadGEM3-GC31-LL,unlabelled,-0.024060852277230996,-0.0010106442791242645,0.03840076736194901,-0.9238815860411151,9.587413509948311e-16 diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values_citation.bibtex b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values_citation.bibtex new file mode 100644 index 000000000..4bb8ce83d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values_citation.bibtex @@ -0,0 +1,49 @@ +@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.3610, + url = {https://doi.org/10.22033/ESGF/CMIP6.3610}, + title = {CCCma CanESM5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Swart, Neil Cameron and Cole, Jason N.S. and Kharin, Viatcheslav V. and Lazare, Mike and Scinocca, John F. and Gillett, Nathan P. and Anstey, James and Arora, Vivek and Christian, James R. and Jiao, Yanjun and Lee, Warren G. and Majaess, Fouad and Saenko, Oleg A. and Seiler, Christian and Seinen, Clint and Shao, Andrew and Solheim, Larry and von Salzen, Knut and Yang, Duo and Winter, Barbara and Sigmond, Michael}, + doi = {10.22033/ESGF/CMIP6.3610}, +} + +@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}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6109, + url = {https://doi.org/10.22033/ESGF/CMIP6.6109}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6109}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6294, + url = {https://doi.org/10.22033/ESGF/CMIP6.6294}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP piControl}, + publisher = {Earth System Grid Federation}, + year = 2018, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6294}, +} diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values_data_citation_info.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values_data_citation_info.txt new file mode 100644 index 000000000..671d7a0e4 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values_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.CCCma.CanESM5.historical +- 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.CMIP.MOHC.HadGEM3-GC31-LL.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values_provenance.xml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values_provenance.xml new file mode 100644 index 000000000..027334e75 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values_provenance.xml @@ -0,0 +1,1130 @@ + + + + + + + + + + + + + + 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 + + + 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 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-04-30T17:32:17Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-04-30T17:32:17Z ;rewrote data to be consistent with CMIP for variable tas found in table Amon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Amon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/872062df-acae-499b-aa0f-9eaca7681abc + tas + r1i1p1f1 + v20190429 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T14:46:52Z + 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-15T14:46:52Z ; 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: areacello (['area_t', 'ht']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + ocean + 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 + Ofx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/fd041f03-fb0f-4c94-9e15-21733dceac88 + areacello + r1i1p1f1 + v20191115 + + + + + + + + CMIP + CanESM5 + CanESM5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CCCma + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_antarctic_avg_ann_sea_ice + CMIP6 + 0 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20190429 + {'operator': 'mean'} + {'operator': 'sum'} + {'units': '1e6 km2'} + {'end_latitude': 0, 'end_longitude': 360, 'start_latitude': -90, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:25Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-07-08T15:34:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:24Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 250 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + fx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/281b65dd-1173-4951-bd8e-3bcbdd356aad + areacella + r1i1p1f1 + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 1 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20191115 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + antarctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + mon + gn + MOHC + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_antarctic_avg_ann_sea_ice + CMIP6 + 2 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200330 + {'operator': 'mean'} + {'operator': 'sum'} + {'units': '1e6 km2'} + {'end_latitude': 0, 'end_longitude': 360, 'start_latitude': -90, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc')} + + + Annual (not decadal) figures + {'annual trends (Roach-style plot)': {'first point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'second point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'third point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}}, 'observation period': None, 'sea ice sensitivity (Notz-style plot)': {'mean': None, 'plausible range': None, 'standard deviation': None}} + other + tcp://127.0.0.1:41245 + sea_ice_sensitivity_script + seaice/seaice_sensitivity.py + + + + + + + + + + + + + + + + + MetOffice, UK + 0000-0002-0489-4238 + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + antarctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + mon + gn + MOHC + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 2 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190624 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc')} + + + + + + + + + + + + + + MetOffice, UK + + + + + + + + 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 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2020-03-11T10:57:50Z + 6.2.37.5 + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2020-03-11T10:57:26Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2020-03-11T10:57:03Z MIP Convert v1.3.3, Python v2.7.16, Iris v2.2.0, Numpy v1.15.4, cftime v1.0.0b1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 100 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01 + r1i1p1f1 + 1 + model-output + 1 + seaIce + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + SImon + Creation Date:(13 December 2018) MD5:f0588f7f55b5732b17302f8d9d0d7b8c + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/c9522497-eaec-4515-bc72-029a39cdaa7b + siconc + siconc + r1i1p1f3 + + + + + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CSIRO + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_antarctic_avg_ann_sea_ice + CMIP6 + 1 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200817 + {'operator': 'mean'} + {'operator': 'sum'} + {'units': '1e6 km2'} + {'end_latitude': 0, 'end_longitude': 360, 'start_latitude': -90, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:44:03Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-01T18:44:03Z ;rewrote data to be consistent with CMIP for variable areacello found in table Ofx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + ocean + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Ofx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e62548a8-4b49-4de6-9375-02bc86ed5797 + areacello + r1i1p1f1 + v20190429 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-02T07:11:34Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-02T07:11:34Z ;rewrote data to be consistent with CMIP for variable siconc found in table SImon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + seaIce + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + SImon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e30786bd-a632-4351-a485-339caeb03972 + siconc + r1i1p1f1 + v20190429 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:36:43Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-05-01T18:36:43Z ;rewrote data to be consistent with CMIP for variable areacella found in table fx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + fx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/dd606980-b677-4d42-92fc-b7d0734af851 + areacella + r1i1p1f1 + v20190429 + + + + + + + MetOffice, UK + 0000-0002-2955-7254 + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:30Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2019-07-08T15:34:30Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:29Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 100 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + ocean + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Ofx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/8fe14488-5391-4968-bc14-94b92e4f9f59 + areacello + r1i1p1f1 + + + CMIP + CanESM5 + CanESM5 + antarctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CCCma + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 0 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190429 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/antarctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2020-08-17T00:32:02Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2020-08-17T00:32:02Z ; 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: siconc (['aice']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + seaIce + 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 + SImon + Creation Date:(30 April 2019) MD5:5bd755e94c2173cb3050a0f3480f60c4 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/931b0664-d90c-46d5-b9fb-f7f17b8cefd5 + siconc + r1i1p1f1 + v20200817 + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2019-06-19T12:07:37Z + 6.2.20.1 + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-06-19T11:56:44Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-06-19T11:56:29Z MIP Convert v1.1.0, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 250 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Amon + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/bc7c9a22-a05f-4154-9781-2b2cd934748e + tas + r1i1p1f3 + + + 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. + + [] + + + + + + diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values.csv b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values.csv new file mode 100644 index 000000000..107325c29 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values.csv @@ -0,0 +1,4 @@ +,label,direct_sensitivity_(notz-style),annual_siconc_trend,annual_tas_trend,direct_r_val,direct_p_val +ACCESS-ESM1-5,unlabelled,-0.015413202835805372,-0.0005345031872321633,0.0325482853284367,-0.8745553580707366,3.1662085847651657e-12 +CanESM5,unlabelled,-0.019684147228672472,-0.0007012069342604543,0.03255096789032336,-0.7949743656112556,7.008218341630712e-09 +HadGEM3-GC31-LL,unlabelled,-0.018298682894699665,-0.0007086997732451398,0.03840076736194901,-0.9375420714907107,3.695123061364841e-17 diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values_citation.bibtex b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values_citation.bibtex new file mode 100644 index 000000000..4bb8ce83d --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values_citation.bibtex @@ -0,0 +1,49 @@ +@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.3610, + url = {https://doi.org/10.22033/ESGF/CMIP6.3610}, + title = {CCCma CanESM5 model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Swart, Neil Cameron and Cole, Jason N.S. and Kharin, Viatcheslav V. and Lazare, Mike and Scinocca, John F. and Gillett, Nathan P. and Anstey, James and Arora, Vivek and Christian, James R. and Jiao, Yanjun and Lee, Warren G. and Majaess, Fouad and Saenko, Oleg A. and Seiler, Christian and Seinen, Clint and Shao, Andrew and Solheim, Larry and von Salzen, Knut and Yang, Duo and Winter, Barbara and Sigmond, Michael}, + doi = {10.22033/ESGF/CMIP6.3610}, +} + +@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}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6109, + url = {https://doi.org/10.22033/ESGF/CMIP6.6109}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP historical}, + publisher = {Earth System Grid Federation}, + year = 2019, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6109}, +} + +@misc{https://doi.org/10.22033/ESGF/CMIP6.6294, + url = {https://doi.org/10.22033/ESGF/CMIP6.6294}, + title = {MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP piControl}, + publisher = {Earth System Grid Federation}, + year = 2018, + author = {Ridley, Jeff and Menary, Matthew and Kuhlbrodt, Till and Andrews, Martin and Andrews, Tim}, + doi = {10.22033/ESGF/CMIP6.6294}, +} diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values_data_citation_info.txt b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values_data_citation_info.txt new file mode 100644 index 000000000..671d7a0e4 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values_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.CCCma.CanESM5.historical +- 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.CMIP.MOHC.HadGEM3-GC31-LL.historical +- https://cera-www.dkrz.de/WDCC/ui/cerasearch/cmip6?input=CMIP6.CMIP.MOHC.HadGEM3-GC31-LL.piControl diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values_provenance.xml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values_provenance.xml new file mode 100644 index 000000000..0446da27c --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values_provenance.xml @@ -0,0 +1,1130 @@ + + + + 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 + + + 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 + + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-04-30T17:32:17Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-04-30T17:32:17Z ;rewrote data to be consistent with CMIP for variable tas found in table Amon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Amon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/872062df-acae-499b-aa0f-9eaca7681abc + tas + r1i1p1f1 + v20190429 + + + + + + + + + + + + + + + + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + arctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc + mon + gn + MOHC + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_arctic_sept_sea_ice + CMIP6 + 2 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200330 + {'operator': 'sum'} + {'units': '1e6 km2'} + {'month': 9} + {'end_latitude': 90, 'end_longitude': 360, 'start_latitude': 0, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_HadGEM3-GC31-LL_SImon_historical_r1i1p1f3_siconc_gn_1979-2014.nc')} + + + + + + + + CMIP + HadGEM3-GC31-LL + HadGEM3-GC31-LL + arctic + 2014 + r1i1p1f3 + historical + /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc + mon + gn + MOHC + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 2 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190624 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_HadGEM3-GC31-LL_Amon_historical_r1i1p1f3_tas_gn_1979-2014.nc')} + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2019-11-15T14:46:52Z + 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-15T14:46:52Z ; 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: areacello (['area_t', 'ht']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + ocean + 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 + Ofx + Creation Date:(30 April 2019) MD5:e14f55f257cceafb2523e41244962371 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/fd041f03-fb0f-4c94-9e15-21733dceac88 + areacello + r1i1p1f1 + v20191115 + + + + + + + + Annual (not decadal) figures + {'annual trends (Roach-style plot)': {'first point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'second point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}, 'third point': {'GMST trend': None, 'Pearson CC of SIA over GMST': None, 'SIA trend': None, 'significance of SIA over GMST': None}}, 'observation period': '1979-2014', 'sea ice sensitivity (Notz-style plot)': {'mean': -4.01, 'plausible range': 1.28, 'standard deviation': 0.32}} + other + tcp://127.0.0.1:41245 + sea_ice_sensitivity_script + seaice/seaice_sensitivity.py + + + + + + + + + + + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CSIRO + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_arctic_sept_sea_ice + CMIP6 + 1 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20200817 + {'operator': 'sum'} + {'units': '1e6 km2'} + {'month': 9} + {'end_latitude': 90, 'end_longitude': 360, 'start_latitude': 0, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_ACCESS-ESM1-5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:25Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-07-08T15:34:25Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:24Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 250 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + fx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/281b65dd-1173-4951-bd8e-3bcbdd356aad + areacella + r1i1p1f1 + + + + + + + + + + + + + + CMIP + CanESM5 + CanESM5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc + mon + gn + CCCma + Sea-Ice Area Percentage (Ocean Grid) + SImon + ['seaIce'] + siconc + pp_arctic_sept_sea_ice + CMIP6 + 0 + siconc + sea_ice_area_fraction + 1979 + 1979/2014 + % + siconc + v20190429 + {'operator': 'sum'} + {'units': '1e6 km2'} + {'month': 9} + {'end_latitude': 90, 'end_longitude': 360, 'start_latitude': 0, 'start_longitude': 0} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/siconc/CMIP6_CanESM5_SImon_historical_r1i1p1f1_siconc_gn_1979-2014.nc')} + + + + + + + + + + + + MetOffice, UK + 0000-0002-0489-4238 + + + CMIP + ACCESS-ESM1-5 + ACCESS-ESM1-5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CSIRO + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 1 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20191115 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + + + 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 + + + MetOffice, UK + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2020-03-11T10:57:50Z + 6.2.37.5 + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2020-03-11T10:57:26Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2020-03-11T10:57:03Z MIP Convert v1.3.3, Python v2.7.16, Iris v2.2.0, Numpy v1.15.4, cftime v1.0.0b1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 100 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01 + r1i1p1f1 + 1 + model-output + 1 + seaIce + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + SImon + Creation Date:(13 December 2018) MD5:f0588f7f55b5732b17302f8d9d0d7b8c + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/c9522497-eaec-4515-bc72-029a39cdaa7b + siconc + siconc + r1i1p1f3 + + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:44:03Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-01T18:44:03Z ;rewrote data to be consistent with CMIP for variable areacello found in table Ofx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + ocean + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + Ofx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e62548a8-4b49-4de6-9375-02bc86ed5797 + areacello + r1i1p1f1 + v20190429 + + + + + + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-02T07:11:34Z + 01.00.29 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + 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 + gn + 2019-05-02T07:11:34Z ;rewrote data to be consistent with CMIP for variable siconc found in table SImon.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 100 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + seaIce + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + SImon + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/e30786bd-a632-4351-a485-339caeb03972 + siconc + r1i1p1f1 + v20190429 + + + 3dedf95315d603326fde4f5340dc0519d80d10c0 + rc3-pictrl + 33c30511acc319a98240633965a04ca99c26427e + rc3.1-his01 + CF-1.7 CMIP-6.2 + 1850:01:01:00 + 5201:01:01:00 + CMIP + Spin-up documentation + 0.0 + 1223115.0 + 3.4.0 + ec.cccma.info-info.ccmac.ec@canada.ca + 2019-05-01T18:36:43Z + 01.00.29 + all-forcing simulation of the recent past + historical + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.CCCma.CanESM5.historical.none.r1i1p1f1 + T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa + gn + 2019-05-01T18:36:43Z ;rewrote data to be consistent with CMIP for variable areacella found in table fx.; +Output from $runid + 1 + Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada + CCCma + CMIP6 model data produced by The Government of Canada (Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada) 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) and at https:///pcmdi.llnl.gov/. 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 + 500 km + CMIP + piControl + CMIP6 + CanESM5 + days since 1850-01-01 0:0:0.0 + r1i1p1f1 + 1 + model-output + 1 + atmos + Geophysical Model Development Special issue on CanESM5 (https://www.geosci-model-dev.net/special_issues.html) + CanESM5 (2019): +aerosol: interactive +atmos: CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa) +atmosChem: specified oxidants for aerosols +land: CLASS3.6/CTEM1.2 +landIce: specified ice sheets +ocean: NEMO3.4.1 (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) +ocnBgchem: Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry +seaIce: LIM2 + CanESM5 + AOGCM + none + none + fx + Creation Date:(20 February 2019) MD5:374fbe5a2bcca535c40f7f23da271e49 + CanESM5 output prepared for CMIP6 + hdl:21.14100/dd606980-b677-4d42-92fc-b7d0734af851 + areacella + r1i1p1f1 + v20190429 + + + + + + + + MetOffice, UK + 0000-0002-2955-7254 + + + + + + + + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 267840.0 + 3.4.0 + 2019-07-08T15:34:30Z + 6.2.20.1 + 01.00.29 + pre-industrial control + piControl + 1 + fx + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.piControl.none.r1i1p1f1 + Native eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude + gn + 2019-07-08T15:34:30Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-07-08T16:34:29Z MIP Convert v1.1.2, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-ar766 + 100 km + CMIP + piControl-spinup + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + ocean + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Ofx + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/8fe14488-5391-4968-bc14-94b92e4f9f59 + areacello + r1i1p1f1 + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 21915.0 + 3.4.0 + 2020-08-17T00:32:02Z + 01.00.30 + all-forcing simulation of the recent past + historical + areacello + 1 + mon + https://furtherinfo.es-doc.org/CMIP6.CSIRO.ACCESS-ESM1-5.historical.none.r1i1p1f1 + native atmosphere N96 grid (145x192 latxlon) + gn + 2020-08-17T00:32:02Z ; 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: siconc (['aice']) + CMIP + piControl + CMIP6 + ACCESS-ESM1-5 + days since 0101-1-1 + r1i1p1f1 + 1 + model-output + 1 + seaIce + 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 + SImon + Creation Date:(30 April 2019) MD5:5bd755e94c2173cb3050a0f3480f60c4 + ACCESS-ESM1-5 output prepared for CMIP6 + hdl:21.14100/931b0664-d90c-46d5-b9fb-f7f17b8cefd5 + siconc + r1i1p1f1 + v20200817 + + + + + + + + CF-1.7 CMIP-6.2 + CMIP + standard + 0.0 + 0.0 + 3.4.0 + 2019-06-19T12:07:37Z + 6.2.20.1 + 01.00.29 + all-forcing simulation of the recent past + historical + areacella + 3 + mon + https://furtherinfo.es-doc.org/CMIP6.MOHC.HadGEM3-GC31-LL.historical.none.r1i1p1f3 + Native N96 grid; 192 x 144 longitude/latitude + gn + 2019-06-19T11:56:44Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.; +2019-06-19T11:56:29Z MIP Convert v1.1.0, Python v2.7.12, Iris v1.13.0, Numpy v1.13.3, netcdftime v1.4.1. + 1 + Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK + MOHC + CMIP6 model data produced by the Met Office Hadley Centre 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) and at https://ukesm.ac.uk/cmip6. 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 + u-bg466 + 250 km + CMIP + piControl + CMIP6 + HadGEM3-GC31-LL + days since 1850-01-01-00-00-00 + r1i1p1f1 + 1 + model-output + 1 + atmos + HadGEM3-GC31-LL (2016): +aerosol: UKCA-GLOMAP-mode +atmos: MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km) +atmosChem: none +land: JULES-HadGEM3-GL7.1 +landIce: none +ocean: NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m) +ocnBgchem: none +seaIce: CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude) + HadGEM3-GC31-LL + AOGCM AER + none + none + Amon + Creation Date:(13 December 2018) MD5:2b12b5db6db112aa8b8b0d6c1645b121 + HadGEM3-GC31-LL output prepared for CMIP6 + hdl:21.14100/bc7c9a22-a05f-4154-9781-2b2cd934748e + tas + r1i1p1f3 + + + + + + + + + + + + + + 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. + + [] + + + CMIP + CanESM5 + CanESM5 + arctic + 2014 + r1i1p1f1 + historical + /executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc + mon + gn + CCCma + Near-Surface Air Temperature + Amon + ['atmos'] + tas + pp_avg_ann_global_temp + CMIP6 + 0 + tas + air_temperature + 1979 + 1979/2014 + K + tas + v20190429 + {'operator': 'mean'} + {'operator': 'mean'} + {'end_day': 31, 'end_month': 12, 'end_year': 2014, 'start_day': 1, 'start_month': 1, 'start_year': 1979} + {} + {'compress': False, 'compute': False, 'filename': PosixPath('/executions/recipe_20250821_141339/preproc/arctic/tas/CMIP6_CanESM5_Amon_historical_r1i1p1f1_tas_gn_1979-2014.nc')} + + + + + + diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/out.log b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/out.log new file mode 100644 index 000000000..e69de29bb diff --git a/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/output.json b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/output.json new file mode 100644 index 000000000..d7081ddde --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/output.json @@ -0,0 +1,52 @@ +{ + "index": "/executions/recipe_20250821_141339/index.html", + "provenance": { + "environment": {}, + "modeldata": [], + "obsdata": {}, + "log": "/executions/recipe_20250821_141339/run/main_log_debug.txt" + }, + "data": { + "executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values.csv": { + "filename": "executions/recipe_20250821_141339/work/arctic/sea_ice_sensitivity_script/plotted_values.csv", + "long_name": "Annual (not decadal) figures", + "description": "" + }, + "executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv": { + "filename": "executions/recipe_20250821_141339/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv", + "long_name": "Annual (not decadal) figures", + "description": "" + } + }, + "plots": { + "executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png": { + "filename": "executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png", + "long_name": "Sensitivity of sea ice area to annual mean global warming.Mean (dashed), standard deviation (shaded) and plausible values from 1979-2014.", + "description": "" + }, + "executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png": { + "filename": "executions/recipe_20250821_141339/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png", + "long_name": "Decadal trends of sea ice area and global mean temperature.", + "description": "" + }, + "executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png": { + "filename": "executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png", + "long_name": "Sensitivity of sea ice area to annual mean global warming.", + "description": "" + }, + "executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png": { + "filename": "executions/recipe_20250821_141339/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png", + "long_name": "Decadal trends of sea ice area and global mean temperature.", + "description": "" + } + }, + "html": { + "/executions/recipe_20250821_141339/index.html": { + "filename": "/executions/recipe_20250821_141339/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/sea-ice-sensitivity/cmip6_historical/recipe.yml b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/recipe.yml new file mode 100644 index 000000000..42104b940 --- /dev/null +++ b/tests/test-data/regression/esmvaltool/sea-ice-sensitivity/cmip6_historical/recipe.yml @@ -0,0 +1,180 @@ +datasets: +- activity: CMIP + dataset: CanESM5 + ensemble: r1i1p1f1 + exp: historical + grid: gn + institute: CCCma + project: CMIP6 + timerange: 1979/2014 +- activity: CMIP + dataset: ACCESS-ESM1-5 + ensemble: r1i1p1f1 + exp: historical + grid: gn + institute: CSIRO + project: CMIP6 + timerange: 1979/2014 +- activity: CMIP + dataset: HadGEM3-GC31-LL + ensemble: r1i1p1f3 + exp: historical + grid: gn + institute: MOHC + project: CMIP6 + timerange: 1979/2014 +defaults: + ensemble: r1i1p1f1 + exp: historical + grid: gn + project: CMIP6 +diagnostics: + antarctic: + description: Plots annual mean sea ice sensitivity below 0 latitude in millions + of square kilometres + scripts: + sea_ice_sensitivity_script: + observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: null + sea ice sensitivity (Notz-style plot): + mean: null + plausible range: null + standard deviation: null + script: seaice/seaice_sensitivity.py + variables: + siconc: + mip: SImon + preprocessor: pp_antarctic_avg_ann_sea_ice + tas: + mip: Amon + preprocessor: pp_avg_ann_global_temp + arctic: + description: Plots September sea ice sensitivity above 0 latitude in millions + of square kilometres + scripts: + sea_ice_sensitivity_script: + observations: + annual trends (Roach-style plot): + first point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + second point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + third point: + GMST trend: null + Pearson CC of SIA over GMST: null + SIA trend: null + significance of SIA over GMST: null + observation period: 1979-2014 + sea ice sensitivity (Notz-style plot): + mean: -4.01 + plausible range: 1.28 + standard deviation: 0.32 + script: seaice/seaice_sensitivity.py + variables: + siconc: + mip: SImon + preprocessor: pp_arctic_sept_sea_ice + tas: + mip: Amon + preprocessor: pp_avg_ann_global_temp +documentation: + authors: + - parsons_naomi + - sellar_alistair + - blockley_ed + 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. + + ' + maintainer: + - parsons_naomi + title: Sea ice sensitivity +preprocessors: + annual_mean: + annual_statistics: &id001 + operator: mean + extract_sept: + extract_month: &id005 + month: 9 + extract_test_period: + extract_time: &id002 + end_day: 31 + end_month: 12 + end_year: 2014 + start_day: 1 + start_month: 1 + start_year: 1979 + global_mean: + area_statistics: &id007 + operator: mean + nh_total_area: + area_statistics: &id003 + operator: sum + convert_units: &id004 + units: 1e6 km2 + extract_region: &id006 + end_latitude: 90 + end_longitude: 360 + start_latitude: 0 + start_longitude: 0 + pp_antarctic_avg_ann_sea_ice: + annual_statistics: *id001 + area_statistics: &id008 + operator: sum + convert_units: &id009 + units: 1e6 km2 + extract_region: &id010 + end_latitude: 0 + end_longitude: 360 + start_latitude: -90 + start_longitude: 0 + extract_time: *id002 + pp_arctic_sept_sea_ice: + area_statistics: *id003 + convert_units: *id004 + extract_month: *id005 + extract_region: *id006 + extract_time: *id002 + pp_avg_ann_global_temp: + annual_statistics: *id001 + area_statistics: *id007 + extract_time: *id002 + sh_total_area: + area_statistics: *id008 + convert_units: *id009 + extract_region: *id010 diff --git a/uv.lock b/uv.lock index 1f14e79ac..7458aa175 100644 --- a/uv.lock +++ b/uv.lock @@ -1,4 +1,5 @@ version = 1 +revision = 1 requires-python = ">=3.11" resolution-markers = [ "python_full_version >= '3.12'", @@ -621,6 +622,7 @@ requires-dist = [ { name = "tqdm", specifier = ">=4.67.1" }, { name = "typer", specifier = ">=0.12.5" }, ] +provides-extras = ["postgres", "celery", "aft-providers", "providers"] [package.metadata.requires-dev] dev = [] @@ -714,7 +716,7 @@ source = { editable = "packages/climate-ref-esmvaltool" } dependencies = [ { name = "climate-ref-core" }, { name = "pooch" }, - { name = "ruamel-yaml" }, + { name = "pyyaml" }, { name = "xarray" }, ] @@ -722,7 +724,7 @@ dependencies = [ requires-dist = [ { name = "climate-ref-core", editable = "packages/climate-ref-core" }, { name = "pooch", specifier = ">=1.8" }, - { name = "ruamel-yaml", specifier = ">=0.18" }, + { name = "pyyaml" }, { name = "xarray", specifier = ">=2023.3.0" }, ] @@ -4043,53 +4045,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b3/14/c492b9c7d5dd133e13f211ddea6bb9870f99e4f73932f11aa00bc09a9be9/rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6a727fd083009bc83eb83d6950f0c32b3c94c8b80a9b667c87f4bd1274ca30ba", size = 560885 }, ] -[[package]] -name = "ruamel-yaml" -version = "0.18.10" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "ruamel-yaml-clib", marker = "python_full_version < '3.13' and platform_python_implementation == 'CPython'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ea/46/f44d8be06b85bc7c4d8c95d658be2b68f27711f279bf9dd0612a5e4794f5/ruamel.yaml-0.18.10.tar.gz", hash = "sha256:20c86ab29ac2153f80a428e1254a8adf686d3383df04490514ca3b79a362db58", size = 143447 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c2/36/dfc1ebc0081e6d39924a2cc53654497f967a084a436bb64402dfce4254d9/ruamel.yaml-0.18.10-py3-none-any.whl", hash = "sha256:30f22513ab2301b3d2b577adc121c6471f28734d3d9728581245f1e76468b4f1", size = 117729 }, -] - -[[package]] -name = "ruamel-yaml-clib" -version = "0.2.12" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/20/84/80203abff8ea4993a87d823a5f632e4d92831ef75d404c9fc78d0176d2b5/ruamel.yaml.clib-0.2.12.tar.gz", hash = "sha256:6c8fbb13ec503f99a91901ab46e0b07ae7941cd527393187039aec586fdfd36f", size = 225315 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fb/8f/683c6ad562f558cbc4f7c029abcd9599148c51c54b5ef0f24f2638da9fbb/ruamel.yaml.clib-0.2.12-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:4a6679521a58256a90b0d89e03992c15144c5f3858f40d7c18886023d7943db6", size = 132224 }, - { url = "https://files.pythonhosted.org/packages/3c/d2/b79b7d695e2f21da020bd44c782490578f300dd44f0a4c57a92575758a76/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:d84318609196d6bd6da0edfa25cedfbabd8dbde5140a0a23af29ad4b8f91fb1e", size = 641480 }, - { url = "https://files.pythonhosted.org/packages/68/6e/264c50ce2a31473a9fdbf4fa66ca9b2b17c7455b31ef585462343818bd6c/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb43a269eb827806502c7c8efb7ae7e9e9d0573257a46e8e952f4d4caba4f31e", size = 739068 }, - { url = "https://files.pythonhosted.org/packages/86/29/88c2567bc893c84d88b4c48027367c3562ae69121d568e8a3f3a8d363f4d/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:811ea1594b8a0fb466172c384267a4e5e367298af6b228931f273b111f17ef52", size = 703012 }, - { url = "https://files.pythonhosted.org/packages/11/46/879763c619b5470820f0cd6ca97d134771e502776bc2b844d2adb6e37753/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cf12567a7b565cbf65d438dec6cfbe2917d3c1bdddfce84a9930b7d35ea59642", size = 704352 }, - { url = "https://files.pythonhosted.org/packages/02/80/ece7e6034256a4186bbe50dee28cd032d816974941a6abf6a9d65e4228a7/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7dd5adc8b930b12c8fc5b99e2d535a09889941aa0d0bd06f4749e9a9397c71d2", size = 737344 }, - { url = "https://files.pythonhosted.org/packages/f0/ca/e4106ac7e80efbabdf4bf91d3d32fc424e41418458251712f5672eada9ce/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1492a6051dab8d912fc2adeef0e8c72216b24d57bd896ea607cb90bb0c4981d3", size = 714498 }, - { url = "https://files.pythonhosted.org/packages/67/58/b1f60a1d591b771298ffa0428237afb092c7f29ae23bad93420b1eb10703/ruamel.yaml.clib-0.2.12-cp311-cp311-win32.whl", hash = "sha256:bd0a08f0bab19093c54e18a14a10b4322e1eacc5217056f3c063bd2f59853ce4", size = 100205 }, - { url = "https://files.pythonhosted.org/packages/b4/4f/b52f634c9548a9291a70dfce26ca7ebce388235c93588a1068028ea23fcc/ruamel.yaml.clib-0.2.12-cp311-cp311-win_amd64.whl", hash = "sha256:a274fb2cb086c7a3dea4322ec27f4cb5cc4b6298adb583ab0e211a4682f241eb", size = 118185 }, - { url = "https://files.pythonhosted.org/packages/48/41/e7a405afbdc26af961678474a55373e1b323605a4f5e2ddd4a80ea80f628/ruamel.yaml.clib-0.2.12-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:20b0f8dc160ba83b6dcc0e256846e1a02d044e13f7ea74a3d1d56ede4e48c632", size = 133433 }, - { url = "https://files.pythonhosted.org/packages/ec/b0/b850385604334c2ce90e3ee1013bd911aedf058a934905863a6ea95e9eb4/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:943f32bc9dedb3abff9879edc134901df92cfce2c3d5c9348f172f62eb2d771d", size = 647362 }, - { url = "https://files.pythonhosted.org/packages/44/d0/3f68a86e006448fb6c005aee66565b9eb89014a70c491d70c08de597f8e4/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95c3829bb364fdb8e0332c9931ecf57d9be3519241323c5274bd82f709cebc0c", size = 754118 }, - { url = "https://files.pythonhosted.org/packages/52/a9/d39f3c5ada0a3bb2870d7db41901125dbe2434fa4f12ca8c5b83a42d7c53/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:749c16fcc4a2b09f28843cda5a193e0283e47454b63ec4b81eaa2242f50e4ccd", size = 706497 }, - { url = "https://files.pythonhosted.org/packages/b0/fa/097e38135dadd9ac25aecf2a54be17ddf6e4c23e43d538492a90ab3d71c6/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bf165fef1f223beae7333275156ab2022cffe255dcc51c27f066b4370da81e31", size = 698042 }, - { url = "https://files.pythonhosted.org/packages/ec/d5/a659ca6f503b9379b930f13bc6b130c9f176469b73b9834296822a83a132/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:32621c177bbf782ca5a18ba4d7af0f1082a3f6e517ac2a18b3974d4edf349680", size = 745831 }, - { url = "https://files.pythonhosted.org/packages/db/5d/36619b61ffa2429eeaefaab4f3374666adf36ad8ac6330d855848d7d36fd/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b82a7c94a498853aa0b272fd5bc67f29008da798d4f93a2f9f289feb8426a58d", size = 715692 }, - { url = "https://files.pythonhosted.org/packages/b1/82/85cb92f15a4231c89b95dfe08b09eb6adca929ef7df7e17ab59902b6f589/ruamel.yaml.clib-0.2.12-cp312-cp312-win32.whl", hash = "sha256:e8c4ebfcfd57177b572e2040777b8abc537cdef58a2120e830124946aa9b42c5", size = 98777 }, - { url = "https://files.pythonhosted.org/packages/d7/8f/c3654f6f1ddb75daf3922c3d8fc6005b1ab56671ad56ffb874d908bfa668/ruamel.yaml.clib-0.2.12-cp312-cp312-win_amd64.whl", hash = "sha256:0467c5965282c62203273b838ae77c0d29d7638c8a4e3a1c8bdd3602c10904e4", size = 115523 }, - { url = "https://files.pythonhosted.org/packages/29/00/4864119668d71a5fa45678f380b5923ff410701565821925c69780356ffa/ruamel.yaml.clib-0.2.12-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:4c8c5d82f50bb53986a5e02d1b3092b03622c02c2eb78e29bec33fd9593bae1a", size = 132011 }, - { url = "https://files.pythonhosted.org/packages/7f/5e/212f473a93ae78c669ffa0cb051e3fee1139cb2d385d2ae1653d64281507/ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux2014_aarch64.whl", hash = "sha256:e7e3736715fbf53e9be2a79eb4db68e4ed857017344d697e8b9749444ae57475", size = 642488 }, - { url = "https://files.pythonhosted.org/packages/1f/8f/ecfbe2123ade605c49ef769788f79c38ddb1c8fa81e01f4dbf5cf1a44b16/ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b7e75b4965e1d4690e93021adfcecccbca7d61c7bddd8e22406ef2ff20d74ef", size = 745066 }, - { url = "https://files.pythonhosted.org/packages/e2/a9/28f60726d29dfc01b8decdb385de4ced2ced9faeb37a847bd5cf26836815/ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96777d473c05ee3e5e3c3e999f5d23c6f4ec5b0c38c098b3a5229085f74236c6", size = 701785 }, - { url = "https://files.pythonhosted.org/packages/84/7e/8e7ec45920daa7f76046578e4f677a3215fe8f18ee30a9cb7627a19d9b4c/ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:3bc2a80e6420ca8b7d3590791e2dfc709c88ab9152c00eeb511c9875ce5778bf", size = 693017 }, - { url = "https://files.pythonhosted.org/packages/c5/b3/d650eaade4ca225f02a648321e1ab835b9d361c60d51150bac49063b83fa/ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:e188d2699864c11c36cdfdada94d781fd5d6b0071cd9c427bceb08ad3d7c70e1", size = 741270 }, - { url = "https://files.pythonhosted.org/packages/87/b8/01c29b924dcbbed75cc45b30c30d565d763b9c4d540545a0eeecffb8f09c/ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4f6f3eac23941b32afccc23081e1f50612bdbe4e982012ef4f5797986828cd01", size = 709059 }, - { url = "https://files.pythonhosted.org/packages/30/8c/ed73f047a73638257aa9377ad356bea4d96125b305c34a28766f4445cc0f/ruamel.yaml.clib-0.2.12-cp313-cp313-win32.whl", hash = "sha256:6442cb36270b3afb1b4951f060eccca1ce49f3d087ca1ca4563a6eb479cb3de6", size = 98583 }, - { url = "https://files.pythonhosted.org/packages/b0/85/e8e751d8791564dd333d5d9a4eab0a7a115f7e349595417fd50ecae3395c/ruamel.yaml.clib-0.2.12-cp313-cp313-win_amd64.whl", hash = "sha256:e5b8daf27af0b90da7bb903a876477a9e6d7270be6146906b276605997c7e9a3", size = 115190 }, -] - [[package]] name = "ruff" version = "0.11.7"